home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / components / nsUpdateService.js < prev    next >
Text File  |  2007-10-12  |  104KB  |  3,140 lines

  1. //@line 42 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2.  
  3. const PREF_APP_UPDATE_ENABLED             = "app.update.enabled";
  4. const PREF_APP_UPDATE_AUTO                = "app.update.auto";
  5. const PREF_APP_UPDATE_MODE                = "app.update.mode";
  6. const PREF_APP_UPDATE_SILENT              = "app.update.silent";
  7. const PREF_APP_UPDATE_INTERVAL            = "app.update.interval";
  8. const PREF_APP_UPDATE_TIMER               = "app.update.timer";
  9. const PREF_APP_UPDATE_LOG_BRANCH          = "app.update.log.";
  10. const PREF_APP_UPDATE_URL                 = "app.update.url";
  11. const PREF_APP_UPDATE_URL_OVERRIDE        = "app.update.url.override";
  12. const PREF_APP_UPDATE_URL_DETAILS         = "app.update.url.details";
  13. const PREF_APP_UPDATE_CHANNEL             = "app.update.channel";
  14. const PREF_APP_UPDATE_SHOW_INSTALLED_UI   = "app.update.showInstalledUI";
  15. const PREF_APP_UPDATE_LASTUPDATETIME_FMT  = "app.update.lastUpdateTime.%ID%";
  16. const PREF_APP_EXTENSIONS_VERSION         = "app.extensions.version";
  17. const PREF_GENERAL_USERAGENT_LOCALE       = "general.useragent.locale";
  18. const PREF_APP_UPDATE_INCOMPATIBLE_MODE   = "app.update.incompatible.mode";
  19. const PREF_UPDATE_NEVER_BRANCH            = "app.update.never."
  20. const PREF_PARTNER_BRANCH                 = "app.partner.";
  21. const PREF_FLOCK_FIRST_RUN_DATE           = "flock.first_run.date";
  22. const PREF_FLOCK_FIRST_RUN_DATE_STRING    = "flock.first_run.bigDate";
  23. const PREF_GENERAL_USERAGENT_EDITION      = "general.useragent.edition";
  24.  
  25. const URI_UPDATE_PROMPT_DIALOG  = "chrome://mozapps/content/update/updates.xul";
  26. const URI_UPDATE_HISTORY_DIALOG = "chrome://mozapps/content/update/history.xul";
  27. const URI_BRAND_PROPERTIES      = "chrome://branding/locale/brand.properties";
  28. const URI_UPDATES_PROPERTIES    = "chrome://mozapps/locale/update/updates.properties";
  29. const URI_UPDATE_NS             = "http://www.mozilla.org/2005/app-update";
  30.  
  31. const FIRST_RUN_CUTOFF    = 1148340758;
  32.  
  33. const KEY_APPDIR          = "XCurProcD";
  34. //@line 75 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  35. const KEY_UPDROOT         = "UpdRootD";
  36. const KEY_UAPPDATA        = "UAppData";
  37. //@line 78 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  38.  
  39. const DIR_UPDATES         = "updates";
  40. const FILE_UPDATE_STATUS  = "update.status";
  41. const FILE_UPDATE_ARCHIVE = "update.mar";
  42. const FILE_UPDATE_LOG     = "update.log"
  43. const FILE_UPDATES_DB     = "updates.xml";
  44. const FILE_UPDATE_ACTIVE  = "active-update.xml";
  45. const FILE_PERMS_TEST     = "update.test";
  46. const FILE_LAST_LOG       = "last-update.log";
  47.  
  48. const MODE_RDONLY   = 0x01;
  49. const MODE_WRONLY   = 0x02;
  50. const MODE_CREATE   = 0x08;
  51. const MODE_APPEND   = 0x10;
  52. const MODE_TRUNCATE = 0x20;
  53.  
  54. const PERMS_FILE      = 0644;
  55. const PERMS_DIRECTORY = 0755;
  56.  
  57. const STATE_NONE            = "null";
  58. const STATE_DOWNLOADING     = "downloading";
  59. const STATE_PENDING         = "pending";
  60. const STATE_APPLYING        = "applying";
  61. const STATE_SUCCEEDED       = "succeeded";
  62. const STATE_DOWNLOAD_FAILED = "download-failed";
  63. const STATE_FAILED          = "failed";
  64.  
  65. // From updater/errors.h:
  66. const WRITE_ERROR = 7;
  67.  
  68. const DOWNLOAD_CHUNK_SIZE           = 300000; // bytes
  69. const DOWNLOAD_BACKGROUND_INTERVAL  = 600;    // seconds
  70. const DOWNLOAD_FOREGROUND_INTERVAL  = 0;
  71.  
  72. // Values for the PREF_APP_UPDATE_INCOMPATIBLE_MODE pref. See documentation in
  73. // code below. 
  74. const INCOMPATIBLE_MODE_NEWVERSIONS   = 0;
  75. const INCOMPATIBLE_MODE_NONEWVERSIONS = 1;
  76.  
  77. const POST_UPDATE_CONTRACTID = "@mozilla.org/updates/post-update;1";
  78.  
  79. const nsILocalFile            = Components.interfaces.nsILocalFile;
  80. const nsIUpdateService        = Components.interfaces.nsIUpdateService;
  81. const nsIUpdateItem           = Components.interfaces.nsIUpdateItem;
  82. const nsIPrefLocalizedString  = Components.interfaces.nsIPrefLocalizedString;
  83. const nsIIncrementalDownload  = Components.interfaces.nsIIncrementalDownload;
  84. const nsIFileInputStream      = Components.interfaces.nsIFileInputStream;
  85. const nsIFileOutputStream     = Components.interfaces.nsIFileOutputStream;
  86. const nsICryptoHash           = Components.interfaces.nsICryptoHash;
  87.  
  88. const Node = Components.interfaces.nsIDOMNode;
  89.  
  90. var gApp        = null;
  91. var gPref       = null;
  92. var gABI        = null;
  93. var gOSVersion  = null;
  94. var gConsole    = null;
  95. var gLogEnabled = { };
  96.  
  97. // shared code for suppressing bad cert dialogs
  98. //@line 40 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/../../shared/src/badCertHandler.js"
  99.  
  100. /**
  101.  * Only allow built-in certs for HTTPS connections.  See bug 340198.
  102.  */
  103. function checkCert(channel) {
  104.   if (!channel.originalURI.schemeIs("https"))  // bypass
  105.     return;
  106.  
  107.   const Ci = Components.interfaces;  
  108.   var cert =
  109.       channel.securityInfo.QueryInterface(Ci.nsISSLStatusProvider).
  110.       SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
  111.  
  112.   var issuer = cert.issuer;
  113.   while (issuer && !cert.equals(issuer)) {
  114.     cert = issuer;
  115.     issuer = cert.issuer;
  116.   }
  117.  
  118.   if (!issuer || issuer.tokenName != "Builtin Object Token")
  119.     throw "cert issuer is not built-in";
  120. }
  121.  
  122. /**
  123.  * This class implements nsIBadCertListener.  It's job is to prevent "bad cert"
  124.  * security dialogs from being shown to the user.  It is better to simply fail
  125.  * if the certificate is bad. See bug 304286.
  126.  */
  127. function BadCertHandler() {
  128. }
  129. BadCertHandler.prototype = {
  130.  
  131.   // nsIBadCertListener
  132.   confirmUnknownIssuer: function(socketInfo, cert, certAddType) {
  133.     LOG("EM BadCertHandler: Unknown issuer");
  134.     return false;
  135.   },
  136.  
  137.   confirmMismatchDomain: function(socketInfo, targetURL, cert) {
  138.     LOG("EM BadCertHandler: Mismatched domain");
  139.     return false;
  140.   },
  141.  
  142.   confirmCertExpired: function(socketInfo, cert) {
  143.     LOG("EM BadCertHandler: Expired certificate");
  144.     return false;
  145.   },
  146.  
  147.   notifyCrlNextupdate: function(socketInfo, targetURL, cert) {
  148.   },
  149.  
  150.   // nsIChannelEventSink
  151.   onChannelRedirect: function(oldChannel, newChannel, flags) {
  152.     // make sure the certificate of the old channel checks out before we follow
  153.     // a redirect from it.  See bug 340198.
  154.     checkCert(oldChannel);
  155.   },
  156.  
  157.   // nsIInterfaceRequestor
  158.   getInterface: function(iid) {
  159.     if (iid.equals(Components.interfaces.nsIBadCertListener) ||
  160.         iid.equals(Components.interfaces.nsIChannelEventSink))
  161.       return this;
  162.  
  163.     Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  164.     return null;
  165.   },
  166.  
  167.   // nsISupports
  168.   QueryInterface: function(iid) {
  169.     if (!iid.equals(Components.interfaces.nsIBadCertListener) &&
  170.         !iid.equals(Components.interfaces.nsIChannelEventSink) &&
  171.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  172.         !iid.equals(Components.interfaces.nsISupports))
  173.       throw Components.results.NS_ERROR_NO_INTERFACE;
  174.     return this;
  175.   }
  176. };
  177. //@line 139 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  178.  
  179. /**
  180.  * Logs a string to the error console. 
  181.  * @param   string
  182.  *          The string to write to the error console..
  183.  */  
  184. function LOG(module, string) {
  185.   if (module in gLogEnabled) {
  186.     dump("*** " + module + ": " + string + "\n");
  187.     gConsole.logStringMessage(string);
  188.   }
  189. }
  190.  
  191. /**
  192.  * Convert a string containing binary values to hex.
  193.  */
  194. function binaryToHex(input) {
  195.   var result = "";
  196.   for (var i = 0; i < input.length; ++i) {
  197.     var hex = input.charCodeAt(i).toString(16);
  198.     if (hex.length == 1)
  199.       hex = "0" + hex;
  200.     result += hex;
  201.   }
  202.   return result;
  203. }
  204.  
  205. /**
  206.  * Gets a File URL spec for a nsIFile
  207.  * @param   file
  208.  *          The file to get a file URL spec to
  209.  * @returns The file URL spec to the file
  210.  */
  211. function getURLSpecFromFile(file) {
  212.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  213.                          .getService(Components.interfaces.nsIIOService);
  214.   var fph = ioServ.getProtocolHandler("file")
  215.                   .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
  216.   return fph.getURLSpecFromFile(file);
  217. }
  218.  
  219. /**
  220.  * Gets the specified directory at the specified hierarchy under a 
  221.  * Directory Service key. 
  222.  * @param   key
  223.  *          The Directory Service Key to start from
  224.  * @param   pathArray
  225.  *          An array of path components to locate beneath the directory 
  226.  *          specified by |key|
  227.  * @return  nsIFile object for the location specified. If the directory
  228.  *          requested does not exist, it is created, along with any
  229.  *          parent directories that need to be created.
  230.  */
  231. function getDir(key, pathArray) {
  232.   return getDirInternal(key, pathArray, true, false);
  233. }
  234.  
  235. /**
  236.  * Gets the specified directory at the speciifed hierarchy under a 
  237.  * Directory Service key. 
  238.  * @param   key
  239.  *          The Directory Service Key to start from
  240.  * @param   pathArray
  241.  *          An array of path components to locate beneath the directory 
  242.  *          specified by |key|
  243.  * @return  nsIFile object for the location specified. If the directory
  244.  *          requested does not exist, it is NOT created.
  245.  */
  246. function getDirNoCreate(key, pathArray) {
  247.   return getDirInternal(key, pathArray, false, false);
  248. }
  249.  
  250. /**
  251.  * Gets the specified directory at the specified hierarchy under the 
  252.  * update root directory.
  253.  * @param   pathArray
  254.  *          An array of path components to locate beneath the directory 
  255.  *          specified by |key|
  256.  * @return  nsIFile object for the location specified. If the directory
  257.  *          requested does not exist, it is created, along with any
  258.  *          parent directories that need to be created.
  259.  */
  260. function getUpdateDir(pathArray) {
  261.   return getDirInternal(KEY_APPDIR, pathArray, true, true);
  262. }
  263.  
  264. /**
  265.  * Gets the specified directory at the speciifed hierarchy under a 
  266.  * Directory Service key. 
  267.  * @param   key
  268.  *          The Directory Service Key to start from
  269.  * @param   pathArray
  270.  *          An array of path components to locate beneath the directory 
  271.  *          specified by |key|
  272.  * @param   shouldCreate
  273.  *          true if the directory hierarchy specified in |pathArray|
  274.  *          should be created if it does not exist,
  275.  *          false otherwise.
  276.  * @param   update
  277.  *          true if finding the update directory,
  278.  *          false otherwise.
  279.  * @return  nsIFile object for the location specified. 
  280.  */
  281. function getDirInternal(key, pathArray, shouldCreate, update) {
  282.   var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
  283.                               .getService(Components.interfaces.nsIProperties);
  284.   var dir = fileLocator.get(key, Components.interfaces.nsIFile);
  285. //@line 247 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  286.   if (update) {
  287.     try {
  288.       dir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  289.     } catch (e) {
  290.     }
  291.   }
  292. //@line 254 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  293.   for (var i = 0; i < pathArray.length; ++i) {
  294.     dir.append(pathArray[i]);
  295.     if (shouldCreate && !dir.exists())
  296.       dir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  297.   }
  298.   return dir;
  299. }
  300.  
  301. /**
  302.  * Gets the file at the speciifed hierarchy under a Directory Service key.
  303.  * @param   key
  304.  *          The Directory Service Key to start from
  305.  * @param   pathArray
  306.  *          An array of path components to locate beneath the directory 
  307.  *          specified by |key|. The last item in this array must be the
  308.  *          leaf name of a file.
  309.  * @return  nsIFile object for the file specified. The file is NOT created
  310.  *          if it does not exist, however all required directories along 
  311.  *          the way are.
  312.  */
  313. function getFile(key, pathArray) {
  314.   var file = getDir(key, pathArray.slice(0, -1));
  315.   file.append(pathArray[pathArray.length - 1]);
  316.   return file;
  317. }
  318.  
  319. /**
  320.  * Gets the file at the speciifed hierarchy under the update root directory.
  321.  * @param   pathArray
  322.  *          An array of path components to locate beneath the directory 
  323.  *          specified by |key|. The last item in this array must be the
  324.  *          leaf name of a file.
  325.  * @return  nsIFile object for the file specified. The file is NOT created
  326.  *          if it does not exist, however all required directories along 
  327.  *          the way are.
  328.  */
  329. function getUpdateFile(pathArray) {
  330.   var file = getUpdateDir(pathArray.slice(0, -1));
  331.   file.append(pathArray[pathArray.length - 1]);
  332.   return file;
  333. }
  334.  
  335. /**
  336.  * Closes a Safe Output Stream
  337.  * @param   fos
  338.  *          The Safe Output Stream to close
  339.  */
  340. function closeSafeOutputStream(fos) {
  341.   if (fos instanceof Components.interfaces.nsISafeOutputStream) {
  342.     try {
  343.       fos.finish();
  344.     }
  345.     catch (e) {
  346.       fos.close();
  347.     }
  348.   }
  349.   else
  350.     fos.close();
  351. }
  352.  
  353. /**
  354.  * Returns human readable status text from the updates.properties bundle
  355.  * based on an error code
  356.  * @param   code
  357.  *          The error code to look up human readable status text for
  358.  * @param   defaultCode
  359.  *          The default code to look up should human readable status text
  360.  *          not exist for |code|
  361.  * @returns A human readable status text string
  362.  */
  363. function getStatusTextFromCode(code, defaultCode) {
  364.   var sbs = 
  365.       Components.classes["@mozilla.org/intl/stringbundle;1"].
  366.       getService(Components.interfaces.nsIStringBundleService);
  367.   var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  368.   var reason = updateBundle.GetStringFromName("checker_error-" + defaultCode);
  369.   try {
  370.     reason = updateBundle.GetStringFromName("checker_error-" + code);
  371.     LOG("General", "Transfer Error: " + reason + ", code: " + code);
  372.   }
  373.   catch (e) {
  374.     // Use the default reason
  375.     LOG("General", "Transfer Error: " + reason + ", code: " + defaultCode);
  376.   }
  377.   return reason;
  378. }
  379.  
  380. /**
  381.  * Get the Active Updates directory
  382.  * @param   key
  383.  *          The Directory Service Key (optional).
  384.  *          If used, don't search local appdata on Win32 and don't create dir.
  385.  * @returns The active updates directory, as a nsIFile object
  386.  */
  387. function getUpdatesDir(key) {
  388.   // Right now, we only support downloading one patch at a time, so we always
  389.   // use the same target directory.
  390.   var fileLocator =
  391.       Components.classes["@mozilla.org/file/directory_service;1"].
  392.       getService(Components.interfaces.nsIProperties);
  393.   var appDir;
  394.   if (key)
  395.     appDir = fileLocator.get(key, Components.interfaces.nsIFile);
  396.   else {
  397.     appDir = fileLocator.get(KEY_APPDIR, Components.interfaces.nsIFile);
  398. //@line 360 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  399.     try {
  400.       appDir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  401.     } catch (e) {
  402.     }
  403. //@line 365 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  404.   }
  405.   appDir.append(DIR_UPDATES);
  406.   appDir.append("0");
  407.   if (!appDir.exists() && !key)
  408.     appDir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  409.   return appDir;
  410. }
  411.  
  412. /**
  413.  * Reads the update state from the update.status file in the specified
  414.  * directory.
  415.  * @param   dir
  416.  *          The dir to look for an update.status file in
  417.  * @returns The status value of the update.
  418.  */
  419. function readStatusFile(dir) {
  420.   var statusFile = dir.clone();
  421.   statusFile.append(FILE_UPDATE_STATUS);
  422.   LOG("General", "Reading Status File: " + statusFile.path);
  423.   return readStringFromFile(statusFile) || STATE_NONE;
  424. }
  425.  
  426. /**
  427.  * Writes the current update operation/state to a file in the patch 
  428.  * directory, indicating to the patching system that operations need
  429.  * to be performed.
  430.  * @param   dir
  431.  *          The patch directory where the update.status file should be 
  432.  *          written.
  433.  * @param   state
  434.  *          The state value to write.
  435.  */
  436. function writeStatusFile(dir, state) {
  437.   var statusFile = dir.clone();
  438.   statusFile.append(FILE_UPDATE_STATUS);
  439.   writeStringToFile(statusFile, state);
  440. }
  441.  
  442. /**
  443.  * Removes the Updates Directory
  444.  * @param   key
  445.  *          The Directory Service Key under which update directory resides
  446.  *          (optional).
  447.  */
  448. function cleanUpUpdatesDir(key) {
  449.   // Bail out if we don't have appropriate permissions
  450.   var updateDir;
  451.   try {
  452.     updateDir = getUpdatesDir(key);
  453.   }
  454.   catch (e) {
  455.     return;
  456.   }
  457.  
  458.   var e = updateDir.directoryEntries;
  459.   while (e.hasMoreElements()) {
  460.     var f = e.getNext().QueryInterface(Components.interfaces.nsIFile);
  461.     // Preserve the last update log file for debugging purposes
  462.     if (f.leafName == FILE_UPDATE_LOG) {
  463.       try {
  464.         var dir = f.parent.parent;
  465.         var logFile = dir.clone();
  466.         logFile.append(FILE_LAST_LOG);
  467.         if (logFile.exists())
  468.           logFile.remove(false);
  469.         f.copyTo(dir, FILE_LAST_LOG);
  470.  
  471.         var ext = '.' + String(Date.now());
  472.         var logFile = dir.clone();
  473.         logFile.append(FILE_LAST_LOG + ext);
  474.         if (logFile.exists())
  475.           logFile.remove(false);
  476.         f.copyTo(dir, FILE_LAST_LOG + ext);
  477.       }
  478.       catch (e) {
  479.         LOG("General", "Failed to copy file: " + f.path);
  480.       }
  481.     }
  482.     // Now, recursively remove this file.  The recusive removal is really
  483.     // only needed on Mac OSX because this directory will contain a copy of
  484.     // updater.app, which is itself a directory.
  485.     try {
  486.       f.remove(true);
  487.     }
  488.     catch (e) {
  489.       LOG("General", "Failed to remove file: " + f.path);
  490.     }
  491.   }
  492.   try {
  493.     updateDir.remove(false);
  494.   } catch (e) {
  495.     LOG("General", "Failed to remove update directory: " + updateDir.path + 
  496.         " - This is almost always bad. Exception = " + e);
  497.     throw e;
  498.   }
  499. }
  500.  
  501. /**
  502.  * Clean up updates list and the updates directory.
  503.  * @param   key
  504.  *          The Directory Service Key under which update directory resides
  505.  *          (optional).
  506.  */
  507. function cleanupActiveUpdate(key) {
  508.   // Move the update from the Active Update list into the Past Updates list.
  509.   var um = 
  510.       Components.classes["@mozilla.org/updates/update-manager;1"].
  511.       getService(Components.interfaces.nsIUpdateManager);
  512.   um.activeUpdate = null;
  513.   um.saveUpdates();
  514.  
  515.   // Now trash the updates directory, since we're done with it
  516.   cleanUpUpdatesDir(key);
  517. }
  518.  
  519. /**
  520.  * Gets a preference value, handling the case where there is no default.
  521.  * @param   func
  522.  *          The name of the preference function to call, on nsIPrefBranch
  523.  * @param   preference
  524.  *          The name of the preference
  525.  * @param   defaultValue
  526.  *          The default value to return in the event the preference has 
  527.  *          no setting
  528.  * @returns The value of the preference, or undefined if there was no
  529.  *          user or default value.
  530.  */
  531. function getPref(func, preference, defaultValue) {
  532.   try {
  533.     return gPref[func](preference);
  534.   }
  535.   catch (e) {
  536.   }
  537.   return defaultValue;
  538. }
  539.  
  540. /**
  541.  * Gets the current value of the locale.  It's possible for this preference to
  542.  * be localized, so we have to do a little extra work here.  Similar code
  543.  * exists in nsHttpHandler.cpp when building the UA string.
  544.  */
  545. function getLocale() {
  546.   try {
  547.     return gPref.getComplexValue(PREF_GENERAL_USERAGENT_LOCALE,
  548.                                  nsIPrefLocalizedString).data;
  549.   } catch (e) {}
  550.  
  551.   return gPref.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  552. }
  553.  
  554. /**
  555.  * Read the update channel from defaults only.  We do this to ensure that
  556.  * the channel is tightly coupled with the application and does not apply
  557.  * to other instances of the application that may use the same profile.
  558.  */
  559. function getUpdateChannel() {
  560.   var channel = "default";
  561.   var prefName;
  562.   var prefValue;
  563.  
  564.   var defaults =
  565.       gPref.QueryInterface(Components.interfaces.nsIPrefService).
  566.       getDefaultBranch(null);
  567.   try {
  568.     channel = defaults.getCharPref(PREF_APP_UPDATE_CHANNEL);
  569.   } catch (e) {
  570.     // use default when pref not found
  571.   }
  572.  
  573.   var edition = getPref("getCharPref", PREF_GENERAL_USERAGENT_EDITION, null);
  574.   if (edition) {
  575.     channel += "-edition-" + edition;
  576.   }
  577.  
  578.   try {
  579.     var partners = gPref.getChildList(PREF_PARTNER_BRANCH, { });
  580.     if (partners.length) {
  581.       channel += "-cck";
  582.       partners.sort();
  583.  
  584.       for each (prefName in partners) {
  585.         prefValue = gPref.getCharPref(prefName);
  586.         channel += "-" + prefValue;
  587.       }
  588.     }
  589.   }
  590.   catch (e) {
  591.     Components.utils.reportError(e);
  592.   }
  593.  
  594.   return channel;
  595. }
  596.  
  597. /**
  598.  * An enumeration of items in a JS array.
  599.  * @constructor
  600.  */
  601. function ArrayEnumerator(aItems) {
  602.   this._index = 0;
  603.   if (aItems) {
  604.     for (var i = 0; i < aItems.length; ++i) {
  605.       if (!aItems[i])
  606.         aItems.splice(i, 1);      
  607.     }
  608.   }
  609.   this._contents = aItems;
  610. }
  611.  
  612. ArrayEnumerator.prototype = {
  613.   _index: 0,
  614.   _contents: [],
  615.   
  616.   hasMoreElements: function() {
  617.     return this._index < this._contents.length;
  618.   },
  619.   
  620.   getNext: function() {
  621.     return this._contents[this._index++];      
  622.   }
  623. };
  624.  
  625. /**
  626.  * Trims a prefix from a string.
  627.  * @param   string
  628.  *          The source string
  629.  * @param   prefix
  630.  *          The prefix to remove.
  631.  * @returns The suffix (string - prefix)
  632.  */
  633. function stripPrefix(string, prefix) {
  634.   return string.substr(prefix.length);
  635. }
  636.  
  637. /**
  638.  * Writes a string of text to a file.  A newline will be appended to the data
  639.  * written to the file.  This function only works with ASCII text.
  640.  */
  641. function writeStringToFile(file, text) {
  642.   var fos =
  643.       Components.classes["@mozilla.org/network/safe-file-output-stream;1"].
  644.       createInstance(nsIFileOutputStream);
  645.   var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  646.   if (!file.exists()) 
  647.     file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  648.   fos.init(file, modeFlags, PERMS_FILE, 0);
  649.   text += "\n";
  650.   fos.write(text, text.length);    
  651.   closeSafeOutputStream(fos);
  652. }
  653.  
  654. /**
  655.  * Reads a string of text from a file.  A trailing newline will be removed
  656.  * before the result is returned.  This function only works with ASCII text.
  657.  */
  658. function readStringFromFile(file) {
  659.   var fis =
  660.       Components.classes["@mozilla.org/network/file-input-stream;1"].
  661.       createInstance(nsIFileInputStream);
  662.   var modeFlags = MODE_RDONLY;
  663.   if (!file.exists())
  664.     return null;
  665.   fis.init(file, modeFlags, PERMS_FILE, 0);
  666.   var sis =
  667.       Components.classes["@mozilla.org/scriptableinputstream;1"].
  668.       createInstance(Components.interfaces.nsIScriptableInputStream);
  669.   sis.init(fis);
  670.   var text = sis.read(sis.available());
  671.   sis.close();
  672.   if (text[text.length - 1] == "\n")
  673.     text = text.slice(0, -1);
  674.   return text;
  675. }
  676.  
  677. function getObserverService()
  678. {
  679.   return Components.classes["@mozilla.org/observer-service;1"]
  680.                    .getService(Components.interfaces.nsIObserverService);
  681. }
  682.  
  683. /**
  684.  * Update Patch
  685.  * @param   patch
  686.  *          A <patch> element to initialize this object with
  687.  * @throws if patch has a size of 0
  688.  * @constructor
  689.  */
  690. function UpdatePatch(patch) {
  691.   this._properties = {};
  692.   for (var i = 0; i < patch.attributes.length; ++i) {
  693.     var attr = patch.attributes.item(i);
  694.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  695.     switch (attr.name) {
  696.     case "selected":
  697.       this.selected = attr.value == "true";
  698.       break;
  699.     case "size":
  700.       if (0 == parseInt(attr.value)) {
  701.         LOG("UpdatePatch", "0-sized patch!");
  702.         throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  703.       }
  704.     default:
  705.       this[attr.name] = attr.value;
  706.       break;
  707.     };
  708.   }
  709. }
  710. UpdatePatch.prototype = {
  711.   /**
  712.    * See nsIUpdateService.idl
  713.    */
  714.   serialize: function(updates) {
  715.     var patch = updates.createElementNS(URI_UPDATE_NS, "patch");
  716.     patch.setAttribute("type", this.type);
  717.     patch.setAttribute("URL", this.URL);
  718.     patch.setAttribute("hashFunction", this.hashFunction);
  719.     patch.setAttribute("hashValue", this.hashValue);
  720.     patch.setAttribute("size", this.size);
  721.     patch.setAttribute("selected", this.selected);
  722.     patch.setAttribute("state", this.state);
  723.     
  724.     for (var p in this._properties) {
  725.       if (this._properties[p].present)
  726.         patch.setAttribute(p, this._properties[p].data);
  727.     }
  728.     
  729.     return patch; 
  730.   },
  731.   
  732.   /**
  733.    * A hash of custom properties
  734.    */
  735.   _properties: null,
  736.   
  737.   /**
  738.    * See nsIWritablePropertyBag.idl
  739.    */
  740.   setProperty: function(name, value) {
  741.     this._properties[name] = { data: value, present: true };
  742.   },
  743.   
  744.   /**
  745.    * See nsIWritablePropertyBag.idl
  746.    */
  747.   deleteProperty: function(name) {
  748.     if (name in this._properties)
  749.       this._properties[name].present = false;
  750.     else
  751.       throw Components.results.NS_ERROR_FAILURE;
  752.   },
  753.   
  754.   /**
  755.    * See nsIPropertyBag.idl
  756.    */
  757.   get enumerator() {
  758.     var properties = [];
  759.     for (var p in this._properties)
  760.       properties.push(this._properties[p].data);
  761.     return new ArrayEnumerator(properties);
  762.   },
  763.   
  764.   /**
  765.    * See nsIPropertyBag.idl
  766.    */
  767.   getProperty: function(name) {
  768.     if (name in this._properties &&
  769.         this._properties[name].present)
  770.       return this._properties[name].data;
  771.     throw Components.results.NS_ERROR_FAILURE;
  772.   },
  773.   
  774.   /**
  775.    * Returns whether or not the update.status file for this patch exists at the 
  776.    * appropriate location. 
  777.    */
  778.   get statusFileExists() {
  779.     var statusFile = getUpdatesDir();
  780.     statusFile.append(FILE_UPDATE_STATUS);
  781.     return statusFile.exists();
  782.   },
  783.   
  784.   /**
  785.    * See nsIUpdateService.idl
  786.    */
  787.   get state() {
  788.     if (!this.statusFileExists)
  789.       return STATE_NONE;
  790.     return this._properties.state;
  791.   },
  792.   set state(val) {
  793.     this._properties.state = val;
  794.   },
  795.   
  796.   /**
  797.    * See nsISupports.idl
  798.    */
  799.   QueryInterface: function(iid) {
  800.     if (!iid.equals(Components.interfaces.nsIUpdatePatch) &&
  801.         !iid.equals(Components.interfaces.nsIPropertyBag) && 
  802.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) && 
  803.         !iid.equals(Components.interfaces.nsISupports))
  804.       throw Components.results.NS_ERROR_NO_INTERFACE;
  805.     return this;
  806.   }
  807. };
  808.  
  809. /**
  810.  * Update
  811.  * Implements nsIUpdate
  812.  * @param   update
  813.  *          An <update> element to initialize this object with
  814.  * @throws if the update contains no patches
  815.  * @constructor
  816.  */
  817. function Update(update) {
  818.   this._properties = {};
  819.   this._patches = [];
  820.   this.installDate = 0;
  821.   this.isCompleteUpdate = false;
  822.   this.channel = "default";
  823.  
  824.   // Null <update>, assume this is a message container and do no 
  825.   // further initialization
  826.   if (!update)
  827.     return;
  828.     
  829.   for (var i = 0; i < update.childNodes.length; ++i) {
  830.     var patchElement = update.childNodes.item(i);
  831.     if (patchElement.nodeType != Node.ELEMENT_NODE ||
  832.         patchElement.localName != "patch")
  833.       continue;
  834.  
  835.     patchElement.QueryInterface(Components.interfaces.nsIDOMElement);
  836.     try {
  837.       var patch = new UpdatePatch(patchElement);
  838.     } catch (e) {
  839.       continue;
  840.     }
  841.     this._patches.push(patch);
  842.   }
  843.   
  844.   if (0 == this._patches.length)
  845.     throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  846.  
  847.   for (var i = 0; i < update.attributes.length; ++i) {
  848.     var attr = update.attributes.item(i);
  849.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  850.     if (attr.name == "installDate" && attr.value) 
  851.       this.installDate = parseInt(attr.value);
  852.     else if (attr.name == "isCompleteUpdate")
  853.       this.isCompleteUpdate = attr.value == "true";
  854.     else if (attr.name == "isSecurityUpdate")
  855.       this.isSecurityUpdate = attr.value == "true";
  856.     else if (attr.name == "detailsURL")
  857.       this._detailsURL = attr.value;
  858.     else if (attr.name == "channel")
  859.       this.channel = attr.value;
  860.     else
  861.       this[attr.name] = attr.value;
  862.   }
  863.   
  864.   // The Update Name is either the string provided by the <update> element, or
  865.   // the string: "<App Name> <Update App Version>"
  866.   var name = "";
  867.   if (update.hasAttribute("name"))
  868.     name = update.getAttribute("name");
  869.   else {
  870.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  871.                         .getService(Components.interfaces.nsIStringBundleService);
  872.     var brandBundle = sbs.createBundle(URI_BRAND_PROPERTIES);
  873.     var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  874.     var appName = brandBundle.GetStringFromName("brandShortName");
  875.     name = updateBundle.formatStringFromName("updateName", 
  876.                                              [appName, this.version], 2);
  877.   }
  878.   this.name = name;
  879. }
  880. Update.prototype = {
  881.   /**
  882.    * See nsIUpdateService.idl
  883.    */
  884.   get patchCount() {
  885.     return this._patches.length;
  886.   },
  887.   
  888.   /**
  889.    * See nsIUpdateService.idl
  890.    */
  891.   getPatchAt: function(index) {
  892.     return this._patches[index];
  893.   },
  894.  
  895.   /**
  896.    * See nsIUpdateService.idl
  897.    * 
  898.    * We use a copy of the state cached on this object in |_state| only when 
  899.    * there is no selected patch, i.e. in the case when we could not load 
  900.    * |.activeUpdate| from the update manager for some reason but still have
  901.    * the update.status file to work with. 
  902.    */
  903.   _state: "",
  904.   set state(state) {
  905.     if (this.selectedPatch)
  906.       this.selectedPatch.state = state;
  907.     this._state = state;
  908.     return state;
  909.   },
  910.   get state() {
  911.     if (this.selectedPatch)
  912.       return this.selectedPatch.state;
  913.     return this._state;
  914.   },
  915.  
  916.   /**
  917.    * See nsIUpdateService.idl
  918.    */
  919.   errorCode: 0,
  920.     
  921.   /**
  922.    * See nsIUpdateService.idl
  923.    */
  924.   get selectedPatch() {
  925.     for (var i = 0; i < this.patchCount; ++i) {
  926.       if (this._patches[i].selected)
  927.         return this._patches[i];
  928.     }
  929.     return null;
  930.   },
  931.   
  932.   /**
  933.    * See nsIUpdateService.idl
  934.    */
  935.   get detailsURL() {
  936.     if (!this._detailsURL) {
  937.       try {
  938.         // Try using a default details URL supplied by the distribution
  939.         // if the update XML does not supply one.
  940.         var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"]
  941.                                   .getService(Components.interfaces.nsIURLFormatter);
  942.         return formatter.formatURLPref(PREF_APP_UPDATE_URL_DETAILS);
  943.       }
  944.       catch (e) {
  945.       }
  946.     }
  947.     return this._detailsURL || "";
  948.   },
  949.   
  950.   /**
  951.    * See nsIUpdateService.idl
  952.    */
  953.   serialize: function(updates) {
  954.     var update = updates.createElementNS(URI_UPDATE_NS, "update");
  955.     update.setAttribute("type", this.type);
  956.     update.setAttribute("name", this.name);
  957.     update.setAttribute("version", this.version);
  958.     update.setAttribute("extensionVersion", this.extensionVersion);
  959.     update.setAttribute("detailsURL", this.detailsURL);
  960.     update.setAttribute("licenseURL", this.licenseURL);
  961.     update.setAttribute("serviceURL", this.serviceURL);
  962.     update.setAttribute("installDate", this.installDate);
  963.     update.setAttribute("statusText", this.statusText);
  964.     update.setAttribute("buildID", this.buildID);
  965.     update.setAttribute("isCompleteUpdate", this.isCompleteUpdate);
  966.     update.setAttribute("channel", this.channel);
  967.     updates.documentElement.appendChild(update);
  968.     
  969.     for (var p in this._properties) {
  970.       if (this._properties[p].present)
  971.         update.setAttribute(p, this._properties[p].data);
  972.     }
  973.     
  974.     for (var i = 0; i < this.patchCount; ++i)
  975.       update.appendChild(this.getPatchAt(i).serialize(updates));
  976.     
  977.     return update;
  978.   },
  979.    
  980.   /**
  981.    * A hash of custom properties
  982.    */
  983.   _properties: null,
  984.   
  985.   /**
  986.    * See nsIWritablePropertyBag.idl
  987.    */
  988.   setProperty: function(name, value) {
  989.     this._properties[name] = { data: value, present: true };
  990.   },
  991.   
  992.   /**
  993.    * See nsIWritablePropertyBag.idl
  994.    */
  995.   deleteProperty: function(name) {
  996.     if (name in this._properties)
  997.       this._properties[name].present = false;
  998.     else
  999.       throw Components.results.NS_ERROR_FAILURE;
  1000.   },
  1001.   
  1002.   /**
  1003.    * See nsIPropertyBag.idl
  1004.    */
  1005.   get enumerator() {
  1006.     var properties = [];
  1007.     for (var p in this._properties)
  1008.       properties.push(this._properties[p].data);
  1009.     return new ArrayEnumerator(properties);
  1010.   },
  1011.   
  1012.   /**
  1013.    * See nsIPropertyBag.idl
  1014.    */
  1015.   getProperty: function(name) {
  1016.     if (name in this._properties &&
  1017.         this._properties[name].present)
  1018.       return this._properties[name].data;
  1019.     throw Components.results.NS_ERROR_FAILURE;
  1020.   },
  1021.   
  1022.   /**
  1023.    * See nsISupports.idl
  1024.    */
  1025.   QueryInterface: function(iid) {
  1026.     if (!iid.equals(Components.interfaces.nsIUpdate_MOZILLA_1_8_BRANCH) &&
  1027.         !iid.equals(Components.interfaces.nsIUpdate) &&
  1028.         !iid.equals(Components.interfaces.nsIPropertyBag) &&
  1029.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) &&
  1030.         !iid.equals(Components.interfaces.nsISupports))
  1031.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1032.     return this;
  1033.   }
  1034. }; 
  1035.  
  1036. /**
  1037.  * UpdateService
  1038.  * A Service for managing the discovery and installation of software updates.
  1039.  * @constructor
  1040.  */
  1041. function UpdateService() {
  1042.   gApp  = Components.classes["@mozilla.org/xre/app-info;1"]
  1043.                     .getService(Components.interfaces.nsIXULAppInfo)
  1044.                     .QueryInterface(Components.interfaces.nsIXULRuntime);
  1045.   gPref = Components.classes["@mozilla.org/preferences-service;1"]
  1046.                     .getService(Components.interfaces.nsIPrefBranch2);
  1047.   gConsole = Components.classes["@mozilla.org/consoleservice;1"]
  1048.                        .getService(Components.interfaces.nsIConsoleService);  
  1049.  
  1050.   // Not all builds have a known ABI
  1051.   try {
  1052.     gABI = gApp.XPCOMABI;
  1053.   }
  1054.   catch (e) {
  1055.     LOG("UpdateService", "XPCOM ABI unknown: updates are not possible.");
  1056.   }
  1057.  
  1058.   try {
  1059.     var sysInfo = 
  1060.       Components.classes["@mozilla.org/system-info;1"]
  1061.                 .getService(Components.interfaces.nsIPropertyBag2);
  1062.  
  1063.     gOSVersion = encodeURIComponent(sysInfo.getProperty("name") + " " +  
  1064.                                     sysInfo.getProperty("version"));
  1065.   }
  1066.   catch (e) {
  1067.     LOG("UpdateService", "OS Version unknown: updates are not possible.");
  1068.   }
  1069.  
  1070. //@line 1040 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1071.  
  1072.   // Start the update timer only after a profile has been selected so that the
  1073.   // appropriate values for the update check are read from the user's profile.  
  1074.   var os = getObserverService();
  1075.  
  1076.   os.addObserver(this, "profile-after-change", false);
  1077.  
  1078.   // Observe xpcom-shutdown to unhook pref branch observers above to avoid 
  1079.   // shutdown leaks.
  1080.   os.addObserver(this, "xpcom-shutdown", false);
  1081. }
  1082.  
  1083. UpdateService.prototype = {
  1084.   /**
  1085.    * The downloader we are using to download updates. There is only ever one of
  1086.    * these.
  1087.    */
  1088.   _downloader: null,
  1089.  
  1090.   /**
  1091.    * Handle Observer Service notifications
  1092.    * @param   subject
  1093.    *          The subject of the notification
  1094.    * @param   topic
  1095.    *          The notification name
  1096.    * @param   data
  1097.    *          Additional data
  1098.    */
  1099.   observe: function(subject, topic, data) {
  1100.     var os = getObserverService();
  1101.  
  1102.     switch (topic) {
  1103.     case "profile-after-change":
  1104.       os.removeObserver(this, "profile-after-change");
  1105.       this._start();
  1106.       break;
  1107.     case "xpcom-shutdown":
  1108.       os.removeObserver(this, "xpcom-shutdown");
  1109.       
  1110.       // Release Services
  1111.       gApp      = null;
  1112.       gPref     = null;
  1113.       gConsole  = null;
  1114.       break;
  1115.     }
  1116.   },
  1117.   
  1118.   /**
  1119.    * Start the Update Service
  1120.    */
  1121.   _start: function() {
  1122.     // Start logging
  1123.     this._initLoggingPrefs();
  1124.     
  1125.     // Clean up any extant updates
  1126.     this._postUpdateProcessing();
  1127.  
  1128.     // Register a background update check timer
  1129.     var tm = 
  1130.         Components.classes["@mozilla.org/updates/timer-manager;1"]
  1131.                   .getService(Components.interfaces.nsIUpdateTimerManager);
  1132.     var interval = getPref("getIntPref", PREF_APP_UPDATE_INTERVAL, 86400);
  1133.     tm.registerTimer("background-update-timer", this, interval);
  1134.  
  1135.     // Resume fetching...
  1136.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1137.                         .getService(Components.interfaces.nsIUpdateManager);
  1138.     var activeUpdate = um.activeUpdate;
  1139.     if (activeUpdate) {
  1140.       var status = this.downloadUpdate(activeUpdate, true);
  1141.       if (status == STATE_NONE)
  1142.         cleanupActiveUpdate();
  1143.     }
  1144.   },
  1145.   
  1146.   /**
  1147.    * Perform post-processing on updates lingering in the updates directory
  1148.    * from a previous browser session - either report install failures (and
  1149.    * optionally attempt to fetch a different version if appropriate) or 
  1150.    * notify the user of install success.
  1151.    */
  1152.   _postUpdateProcessing: function() {
  1153.     // Detect installation failures and notify
  1154.     
  1155.     // Bail out if we don't have appropriate permissions
  1156.     if (!this.canUpdate)
  1157.       return;
  1158.       
  1159.     var status = readStatusFile(getUpdatesDir()); 
  1160.  
  1161.     // Make sure to cleanup after an update that failed for an unknown reason
  1162.     if (status == "null")
  1163.       status = null;
  1164.  
  1165.     var updRootKey = null;
  1166. //@line 1136 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1167.     function findPreviousUpdate(key) {
  1168.       var updateDir = getUpdatesDir(key);
  1169.       if (updateDir.exists()) {
  1170.         status = readStatusFile(updateDir);
  1171.         // Previous download should succeed. Otherwise, we will not be here!
  1172.         if (status == STATE_SUCCEEDED)
  1173.           updRootKey = key;
  1174.         else
  1175.           status = null;
  1176.       }
  1177.     }
  1178.  
  1179.     // required when updating from Fx 2.0.0.1 to 2.0.0.3 (or later)
  1180.     // on Windows Vista.
  1181.     if (status == null)
  1182.       findPreviousUpdate(KEY_UAPPDATA);
  1183.  
  1184.     // required to migrate from older versions.
  1185.     if (status == null)
  1186.       findPreviousUpdate(KEY_APPDIR);
  1187. //@line 1157 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1188.  
  1189.     if (status == STATE_DOWNLOADING) {
  1190.       LOG("UpdateService", "_postUpdateProcessing: Downloading patch, resuming...");
  1191.     }
  1192.     else if (status != null) {
  1193.       // null status means the update.status file is not present, because either:
  1194.       // 1) no update was performed, and so there's no UI to show
  1195.       // 2) an update was attempted but failed during checking, transfer or 
  1196.       //    verification, and was cleaned up at that point, and UI notifying of
  1197.       //    that error was shown at that stage. 
  1198.       var um = 
  1199.           Components.classes["@mozilla.org/updates/update-manager;1"].
  1200.           getService(Components.interfaces.nsIUpdateManager);
  1201.       var prompter = 
  1202.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  1203.           createInstance(Components.interfaces.nsIUpdatePrompt);
  1204.  
  1205.       var shouldCleanup = true;
  1206.       var update = um.activeUpdate;
  1207.       if (!update) {
  1208.         update = new Update(null);
  1209.       }
  1210.       update.state = status;
  1211.       var sbs = 
  1212.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  1213.           getService(Components.interfaces.nsIStringBundleService);
  1214.       var bundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  1215.       if (status == STATE_SUCCEEDED) {
  1216.         update.statusText = bundle.GetStringFromName("installSuccess");
  1217.         
  1218.         // Dig through the update history to find the patch that was just
  1219.         // installed and update its metadata.
  1220.         for (var i = 0; i < um.updateCount; ++i) {
  1221.           var umUpdate = um.getUpdateAt(i);
  1222.           if (umUpdate && umUpdate.version == update.version &&
  1223.                           umUpdate.buildID == update.buildID) {
  1224.             umUpdate.statusText = update.statusText;
  1225.             break;
  1226.           }
  1227.         }
  1228.  
  1229.         LOG("UpdateService", "_postUpdateProcessing: Install Succeeded, Showing UI");
  1230.         prompter.showUpdateInstalled(update);
  1231. //@line 1204 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1232.         // Perform platform-specific post-update processing.
  1233.         if (POST_UPDATE_CONTRACTID in Components.classes) {
  1234.           Components.classes[POST_UPDATE_CONTRACTID].
  1235.               createInstance(Components.interfaces.nsIRunnable).run();
  1236.         }
  1237. //@line 1210 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1238.  
  1239.         // Done with this update. Clean it up.
  1240.         cleanupActiveUpdate(updRootKey);
  1241.       }
  1242.       else {
  1243.         // If we hit an error, then the error code will be included in the
  1244.         // status string following a colon.  If we had an I/O error, then we
  1245.         // assume that the patch is not invalid, and we restage the patch so
  1246.         // that it can be attempted again the next time we restart.
  1247.         var ary = status.split(": ");
  1248.         update.state = ary[0];
  1249.         if (update.state == STATE_FAILED && ary[1]) {
  1250.           update.errorCode = ary[1];
  1251.           if (update.errorCode == WRITE_ERROR) {
  1252.             prompter.showUpdateError(update);
  1253.             writeStatusFile(getUpdatesDir(), update.state = STATE_PENDING);
  1254.             return;
  1255.           }
  1256.         }
  1257.  
  1258.         // Something went wrong with the patch application process.
  1259.         cleanupActiveUpdate();
  1260.  
  1261.         update.statusText = bundle.GetStringFromName("patchApplyFailure");
  1262.         var oldType = update.selectedPatch ? update.selectedPatch.type 
  1263.                                            : "complete";
  1264.         if (update.selectedPatch && oldType == "partial") {
  1265.           // Partial patch application failed, try downloading the complete
  1266.           // update in the background instead.
  1267.           LOG("UpdateService", "_postUpdateProcessing: Install of Partial Patch " + 
  1268.               "failed, downloading Complete Patch and maybe showing UI");
  1269.           var status = this.downloadUpdate(update, true);
  1270.           if (status == STATE_NONE)
  1271.             cleanupActiveUpdate();
  1272.         }
  1273.         else {
  1274.           LOG("UpdateService", "_postUpdateProcessing: Install of Complete or " + 
  1275.               "only patch failed. Showing error.");
  1276.         }
  1277.         update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  1278.         update.setProperty("patchingFailed", oldType);
  1279.         prompter.showUpdateError(update);
  1280.       }
  1281.     }
  1282.     else {
  1283.       LOG("UpdateService", "_postUpdateProcessing: No Status, No Update");
  1284.     }
  1285.   },
  1286.  
  1287.   /**
  1288.    * Initialize Logging preferences, formatted like so:
  1289.    *  app.update.log.<moduleName> = <true|false>
  1290.    */
  1291.   _initLoggingPrefs: function() {
  1292.     try {
  1293.       var ps = Components.classes["@mozilla.org/preferences-service;1"]
  1294.                         .getService(Components.interfaces.nsIPrefService);
  1295.       var logBranch = ps.getBranch(PREF_APP_UPDATE_LOG_BRANCH);
  1296.       var modules = logBranch.getChildList("", { value: 0 });
  1297.  
  1298.       for (var i = 0; i < modules.length; ++i) {
  1299.         if (logBranch.prefHasUserValue(modules[i]))
  1300.           gLogEnabled[modules[i]] = logBranch.getBoolPref(modules[i]);
  1301.       }
  1302.     }
  1303.     catch (e) {
  1304.     }
  1305.   },
  1306.   
  1307.   /**
  1308.    *
  1309.    */
  1310.   _needsToPromptForUpdate: function(updates) {
  1311.     // First, check for Extension incompatibilities. These trump any preference
  1312.     // settings.
  1313.     var em = Components.classes["@mozilla.org/extensions/manager;1"]
  1314.                        .getService(Components.interfaces.nsIExtensionManager);
  1315.     var incompatibleList = { };
  1316.     for (var i = 0; i < updates.length; ++i) {
  1317.       var count = {};
  1318.       em.getIncompatibleItemList(gApp.ID, updates[i].extensionVersion,
  1319.                                  nsIUpdateItem.TYPE_ADDON, false, count);
  1320.       if (count.value > 0)
  1321.         return true;
  1322.     }
  1323.  
  1324.     // Now, inspect user preferences.
  1325.     
  1326.     // No prompt necessary, silently update...
  1327.     return false;
  1328.   },
  1329.   
  1330.   /**
  1331.    * Notified when a timer fires
  1332.    * @param   timer
  1333.    *          The timer that fired
  1334.    */
  1335.   notify: function(timer) {
  1336.     // If a download is in progress, then do nothing.
  1337.     if (this.isDownloading || this._downloader && this._downloader.patchIsStaged)
  1338.       return;
  1339.  
  1340.     var self = this;
  1341.     var listener = {
  1342.       /**
  1343.        * See nsIUpdateService.idl
  1344.        */
  1345.       onProgress: function(request, position, totalSize) { 
  1346.       },
  1347.       
  1348.       /**
  1349.        * See nsIUpdateService.idl
  1350.        */
  1351.       onCheckComplete: function(request, updates, updateCount) {
  1352.         self._selectAndInstallUpdate(updates);
  1353.       },
  1354.  
  1355.       /**
  1356.        * See nsIUpdateService.idl
  1357.        */
  1358.       onError: function(request, update) { 
  1359.         LOG("Checker", "Error during background update: " + update.statusText);
  1360.       },
  1361.     }
  1362.     this.backgroundChecker.checkForUpdates(listener, false);
  1363.   },
  1364.   
  1365.   /**
  1366.    * Determine whether or not an update requires user confirmation before it
  1367.    * can be installed.
  1368.    * @param   update
  1369.    *          The update to be installed
  1370.    * @returns true if a prompt UI should be shown asking the user if they want
  1371.    *          to install the update, false if the update should just be 
  1372.    *          silently downloaded and installed.
  1373.    */
  1374.   _shouldPrompt: function(update) {
  1375.     // There are two possible outcomes here:
  1376.     // 1. download and install the update automatically
  1377.     // 2. alert the user about the presence of an update before doing anything
  1378.     //
  1379.     // The outcome we follow is determined as follows:
  1380.     // 
  1381.     // Note:  all Major updates require notification and confirmation
  1382.     // 
  1383.     // Update Type      Mode      Incompatible    Outcome
  1384.     // Major            0         Yes or No       Notify and Confirm
  1385.     // Major            1         No              Notify and Confirm
  1386.     // Major            1         Yes             Notify and Confirm
  1387.     // Major            2         Yes or No       Notify and Confirm
  1388.     // Minor            0         Yes or No       Auto Install
  1389.     // Minor            1         No              Auto Install
  1390.     // Minor            1         Yes             Notify and Confirm
  1391.     // Minor            2         No              Auto Install
  1392.     // Minor            2         Yes             Notify and Confirm
  1393.     //
  1394.     // In addition, if there is a license associated with an update, regardless
  1395.     // of type it must be agreed to. 
  1396.     //
  1397.     // If app.update.enabled is set to false, an update check is not performed
  1398.     // at all, and so none of the decision making above is entered into.
  1399.     //
  1400.     if (update.type == "major") {
  1401.       LOG("Checker", "_shouldPrompt: Prompting because it is a major update");
  1402.       return true;
  1403.     }
  1404.  
  1405.     update.QueryInterface(Components.interfaces.nsIPropertyBag);
  1406.     try {
  1407.       var licenseAccepted = update.getProperty("licenseAccepted") == "true";
  1408.     }
  1409.     catch (e) {
  1410.       licenseAccepted = false;
  1411.     }
  1412.  
  1413.     var updateEnabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1414.     if (!updateEnabled) {
  1415.       LOG("Checker", "_shouldPrompt: Not prompting because update is " + 
  1416.           "disabled");
  1417.       return false;
  1418.     }
  1419.     
  1420.     // User has turned off automatic download and install
  1421.     var autoEnabled = getPref("getBoolPref", PREF_APP_UPDATE_AUTO, true);
  1422.     if (!autoEnabled) {
  1423.       LOG("Checker", "_shouldPrompt: Prompting because auto install is disabled");
  1424.       return true;
  1425.     }
  1426.     
  1427.     switch (getPref("getIntPref", PREF_APP_UPDATE_MODE, 1)) {
  1428.     case 1:
  1429.       // Mode 1 is do not prompt only if there are no incompatibilities
  1430.       // releases
  1431.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1432.       return !isCompatible(update);
  1433.     case 2:
  1434.       // Mode 2 is do not prompt only if there are no incompatibilities
  1435.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1436.       return !isCompatible(update);
  1437.     }
  1438.     // Mode 0 is do not prompt regardless of incompatibilities
  1439.     LOG("Checker", "_shouldPrompt: Not prompting the user - they choose to " +
  1440.         "ignore incompatibilities");
  1441.     return false;
  1442.   },
  1443.   
  1444.   /**
  1445.    * Determine which of the specified updates should be installed.
  1446.    * @param   updates
  1447.    *          An array of available updates
  1448.    */
  1449.   selectUpdate: function(updates) {
  1450.     if (updates.length == 0)
  1451.       return null;
  1452.     
  1453.     // Choose the newest of the available minor and major updates. 
  1454.     var majorUpdate = null, minorUpdate = null;
  1455.     var newestMinor = updates[0], newestMajor = updates[0];
  1456.  
  1457.     var vc = Components.classes["@mozilla.org/xpcom/version-comparator;1"]
  1458.                        .getService(Components.interfaces.nsIVersionComparator);
  1459.     for (var i = 0; i < updates.length; ++i) {
  1460.       if (updates[i].type == "major" && 
  1461.           vc.compare(newestMajor.version, updates[i].version) <= 0)
  1462.         majorUpdate = newestMajor = updates[i];
  1463.       if (updates[i].type == "minor" && 
  1464.           vc.compare(newestMinor.version, updates[i].version) <= 0)
  1465.         minorUpdate = newestMinor = updates[i];
  1466.     }
  1467.  
  1468.     // IMPORTANT
  1469.     // If there's a minor update, always try and fetch that one first, 
  1470.     // otherwise use the newest major update.
  1471.     // selectUpdate() only returns one update.
  1472.     // if major were to trump minor, and we said "never" to the major
  1473.     // we'd never get the minor update, since selectUpdate()
  1474.     // would return the major update that the user said "never" to
  1475.     // (shadowing the important minor update with security fixes)
  1476.     return minorUpdate || majorUpdate;
  1477.   },
  1478.   
  1479.   /**
  1480.    * Determine which of the specified updates should be installed and
  1481.    * begin the download/installation process, optionally prompting the
  1482.    * user for permission if required.
  1483.    * @param   updates
  1484.    *          An array of available updates
  1485.    */
  1486.   _selectAndInstallUpdate: function(updates) {
  1487.     // Don't prompt if there's an active update - the user is already 
  1488.     // aware and is downloading, or performed some user action to prevent
  1489.     // notification.
  1490.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1491.                        .getService(Components.interfaces.nsIUpdateManager);
  1492.     if (um.activeUpdate)
  1493.       return;
  1494.     
  1495.     var update = this.selectUpdate(updates, updates.length);
  1496.     if (!update)
  1497.       return;
  1498.  
  1499.     // check if the user said "never" to this version
  1500.     // this check is done here, and not in selectUpdate() so that
  1501.     // the user can get an upgrade they said "never" to if they
  1502.     // manually do "Check for Updates..."
  1503.     // note, selectUpdate() only returns one update.
  1504.     // but in selectUpdate(), minor updates trump major updates
  1505.     // if major trumps minor, and we said "never" to the major
  1506.     // we'd never see the minor update.
  1507.     // 
  1508.     // note, the never decision should only apply to major updates
  1509.     // see bug #350636 for a scenario where this could potentially
  1510.     // be an issue
  1511.     var neverPrefName = PREF_UPDATE_NEVER_BRANCH + update.version;
  1512.     var never = getPref("getBoolPref", neverPrefName, false);
  1513.     if (never && update.type == "major")
  1514.       return;
  1515.  
  1516.     if (this._shouldPrompt(update))
  1517.       showPromptIfNoIncompatibilities(update);
  1518.     else {
  1519.       LOG("UpdateService", "_selectAndInstallUpdate: No need to show prompt, just download update");
  1520.       var status = this.downloadUpdate(update, true);
  1521.       if (status == STATE_NONE)
  1522.         cleanupActiveUpdate();
  1523.     }
  1524.   },
  1525.  
  1526.   /**
  1527.    * The Checker used for background update checks.
  1528.    */
  1529.   _backgroundChecker: null,
  1530.   
  1531.   /**
  1532.    * See nsIUpdateService.idl
  1533.    */
  1534.   get backgroundChecker() {
  1535.     if (!this._backgroundChecker) 
  1536.       this._backgroundChecker = new Checker();
  1537.     return this._backgroundChecker;
  1538.   },
  1539.   
  1540.   /**
  1541.    * See nsIUpdateService.idl
  1542.    */
  1543.   get canUpdate() {
  1544.     try {
  1545.       var appDirFile = getUpdateFile([FILE_PERMS_TEST]);
  1546.       if (!appDirFile.exists()) {
  1547.         appDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1548.         appDirFile.remove(false);
  1549.       }
  1550.       var updateDir = getUpdatesDir();
  1551.       var upDirFile = updateDir.clone();
  1552.       upDirFile.append(FILE_PERMS_TEST);
  1553.       if (!upDirFile.exists()) {
  1554.         upDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1555.         upDirFile.remove(false);
  1556.       }
  1557.     }
  1558.     catch (e) {
  1559.       // No write privileges to install directory
  1560.       return false;
  1561.     }
  1562.     // If the administrator has locked the app update functionality 
  1563.     // OFF - this is not just a user setting, so disable the manual
  1564.     // UI too.
  1565.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1566.     if (!enabled && gPref.prefIsLocked(PREF_APP_UPDATE_ENABLED))
  1567.       return false;
  1568.  
  1569.     // If we don't know the binary platform we're updating, we can't update.
  1570.     if (!gABI)
  1571.       return false;
  1572.  
  1573.     // If we don't know the OS version we're updating, we can't update.
  1574.     if (!gOSVersion)
  1575.       return false;
  1576.  
  1577.     return true;
  1578.   },
  1579.   
  1580.   /**
  1581.    * See nsIUpdateService.idl
  1582.    */
  1583.   addDownloadListener: function(listener) {
  1584.     if (!this._downloader) {
  1585.       LOG("UpdateService", "addDownloadListener: no downloader!\n");
  1586.       return;
  1587.     }
  1588.     this._downloader.addDownloadListener(listener);
  1589.   },
  1590.   
  1591.   /**
  1592.    * See nsIUpdateService.idl
  1593.    */
  1594.   removeDownloadListener: function(listener) {
  1595.     if (!this._downloader) {
  1596.       LOG("UpdateService", "removeDownloadListener: no downloader!\n");
  1597.       return;
  1598.     }
  1599.     this._downloader.removeDownloadListener(listener);
  1600.   },
  1601.   
  1602.   /**
  1603.    * See nsIUpdateService.idl
  1604.    */
  1605.   downloadUpdate: function(update, background) {
  1606.     if (!update)
  1607.       throw Components.results.NS_ERROR_NULL_POINTER;
  1608.     if (this.isDownloading) {
  1609.       if (update.isCompleteUpdate == this._downloader.isCompleteUpdate &&
  1610.           background == this._downloader.background) {
  1611.         LOG("UpdateService", "no support for downloading more than one update at a time");
  1612.         return readStatusFile(getUpdatesDir());
  1613.       }
  1614.       this._downloader.cancel();
  1615.     }
  1616.     this._downloader = new Downloader(background);
  1617.     return this._downloader.downloadUpdate(update);
  1618.   },
  1619.   
  1620.   /**
  1621.    * See nsIUpdateService.idl
  1622.    */
  1623.   pauseDownload: function() {
  1624.     if (this.isDownloading)
  1625.       this._downloader.cancel();
  1626.   },
  1627.   
  1628.   /**
  1629.    * See nsIUpdateService.idl
  1630.    */
  1631.   get isDownloading() {
  1632.     return this._downloader && this._downloader.isBusy;
  1633.   },
  1634.   
  1635.   startupPing: function() {
  1636.     var listener = {
  1637.       onProgress: function(request, position, totalSize) {
  1638.       },
  1639.       onCheckComplete: function(request, updates, updateCount) {
  1640.       },
  1641.       onError: function(request, update) {
  1642.       },
  1643.     };
  1644.  
  1645.     checker = new Checker();
  1646.     checker._ping_only = true;
  1647.     checker.checkForUpdates(listener, false);
  1648.   },
  1649.  
  1650.   /**
  1651.    * See nsISupports.idl
  1652.    */
  1653.   QueryInterface: function(iid) {
  1654.     if (!iid.equals(Components.interfaces.nsIApplicationUpdateService) &&
  1655.         !iid.equals(Components.interfaces.nsITimerCallback) && 
  1656.         !iid.equals(Components.interfaces.nsIObserver) && 
  1657.         !iid.equals(Components.interfaces.nsISupports))
  1658.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1659.     return this;
  1660.   }
  1661. };
  1662.  
  1663. /**
  1664.  * A service to manage active and past updates.
  1665.  * @constructor
  1666.  */
  1667. function UpdateManager() {
  1668.   // Ensure the Active Update file is loaded
  1669.   var updates = this._loadXMLFileIntoArray(getUpdateFile([FILE_UPDATE_ACTIVE]));
  1670.   if (updates.length > 0)
  1671.     this._activeUpdate = updates[0];
  1672. }
  1673. UpdateManager.prototype = {
  1674.   /**
  1675.    * All previously downloaded and installed updates, as an array of nsIUpdate
  1676.    * objects.
  1677.    */
  1678.   _updates: null,
  1679.   
  1680.   /**
  1681.    * The current actively downloading/installing update, as a nsIUpdate object.
  1682.    */
  1683.   _activeUpdate: null,
  1684.   
  1685.   /**
  1686.    * Loads an updates.xml formatted file into an array of nsIUpdate items.
  1687.    * @param   file
  1688.    *          A nsIFile for the updates.xml file
  1689.    * @returns The array of nsIUpdate items held in the file.
  1690.    */
  1691.   _loadXMLFileIntoArray: function(file) {
  1692.     if (!file.exists()) {
  1693.       LOG("UpdateManager", "_loadXMLFileIntoArray: XML File does not exist");
  1694.       return [];
  1695.     }
  1696.  
  1697.     var result = [];
  1698.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
  1699.                                .createInstance(Components.interfaces.nsIFileInputStream);
  1700.     fileStream.init(file, MODE_RDONLY, PERMS_FILE, 0);
  1701.     try {
  1702.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1703.                             .createInstance(Components.interfaces.nsIDOMParser);
  1704.       var doc = parser.parseFromStream(fileStream, "UTF-8", fileStream.available(), "text/xml");
  1705.       
  1706.       var updateCount = doc.documentElement.childNodes.length;
  1707.       for (var i = 0; i < updateCount; ++i) {
  1708.         var updateElement = doc.documentElement.childNodes.item(i);
  1709.         if (updateElement.nodeType != Node.ELEMENT_NODE ||
  1710.             updateElement.localName != "update")
  1711.           continue;
  1712.  
  1713.         updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  1714.         try {
  1715.           var update = new Update(updateElement);
  1716.         } catch (e) {
  1717.           LOG("UpdateManager", "_loadXMLFileIntoArray: invalid update");
  1718.           continue;
  1719.         }
  1720.         result.push(new Update(updateElement));
  1721.       }
  1722.     }
  1723.     catch (e) {
  1724.       LOG("UpdateManager", "_loadXMLFileIntoArray: Error constructing update list " + 
  1725.           e);
  1726.     }
  1727.     fileStream.close();
  1728.     return result;
  1729.   },
  1730.   
  1731.   /**
  1732.    * Load the update manager, initializing state from state files.
  1733.    */
  1734.   _ensureUpdates: function() {
  1735.     if (!this._updates) {
  1736.       this._updates = this._loadXMLFileIntoArray(getUpdateFile(
  1737.                         [FILE_UPDATES_DB]));
  1738.  
  1739.       // Make sure that any active update is part of our updates list
  1740.       var active = this.activeUpdate;
  1741.       if (active)
  1742.         this._addUpdate(active);
  1743.     }
  1744.   },
  1745.  
  1746.   /**
  1747.    * See nsIUpdateService.idl
  1748.    */
  1749.   getUpdateAt: function(index) {
  1750.     this._ensureUpdates();
  1751.     return this._updates[index];
  1752.   },
  1753.   
  1754.   /**
  1755.    * See nsIUpdateService.idl
  1756.    */
  1757.   get updateCount() {
  1758.     this._ensureUpdates();
  1759.     return this._updates.length;
  1760.   },
  1761.   
  1762.   /**
  1763.    * See nsIUpdateService.idl
  1764.    */
  1765.   get activeUpdate() {
  1766.     if (this._activeUpdate) {
  1767.       this._activeUpdate.QueryInterface(Components.interfaces.nsIUpdate_MOZILLA_1_8_BRANCH);
  1768.       if (this._activeUpdate.channel != getUpdateChannel()) {
  1769.         // User switched channels, clear out any old active updates and remove
  1770.         // partial downloads
  1771.         this._activeUpdate = null;
  1772.       
  1773.         // Destroy the updates directory, since we're done with it.
  1774.         cleanUpUpdatesDir();
  1775.       }
  1776.     }
  1777.     return this._activeUpdate;
  1778.   },
  1779.   set activeUpdate(activeUpdate) {
  1780.     this._addUpdate(activeUpdate);
  1781.     this._activeUpdate = activeUpdate;
  1782.     if (!activeUpdate) {
  1783.       // If |activeUpdate| is null, we have updated both lists - the active list
  1784.       // and the history list, so we want to write both files.
  1785.       this.saveUpdates();
  1786.     }
  1787.     else
  1788.       this._writeUpdatesToXMLFile([this._activeUpdate], 
  1789.                                   getUpdateFile([FILE_UPDATE_ACTIVE]));
  1790.     return activeUpdate;
  1791.   },
  1792.   
  1793.   /**
  1794.    * Add an update to the Updates list. If the item already exists in the list,
  1795.    * replace the existing value with the new value.
  1796.    * @param   update
  1797.    *          The nsIUpdate object to add.
  1798.    */
  1799.   _addUpdate: function(update) {
  1800.     if (!update)
  1801.       return;
  1802.     this._ensureUpdates();
  1803.     if (this._updates) {
  1804.       for (var i = 0; i < this._updates.length; ++i) {
  1805.         if (this._updates[i] &&
  1806.             this._updates[i].version == update.version &&
  1807.             this._updates[i].buildID == update.buildID) {
  1808.           // Replace the existing entry with the new value, updating
  1809.           // all metadata.
  1810.           this._updates[i] = update;
  1811.           return;
  1812.         }
  1813.       }
  1814.     }
  1815.     // Otherwise add it to the front of the list.
  1816.     if (update) 
  1817.       this._updates = [update].concat(this._updates);
  1818.   },
  1819.   
  1820.   /**
  1821.    * Serializes an array of updates to an XML file
  1822.    * @param   updates
  1823.    *          An array of nsIUpdate objects
  1824.    * @param   file
  1825.    *          The nsIFile object to serialize to
  1826.    */
  1827.   _writeUpdatesToXMLFile: function(updates, file) {
  1828.     var fos = Components.classes["@mozilla.org/network/safe-file-output-stream;1"]
  1829.                         .createInstance(Components.interfaces.nsIFileOutputStream);
  1830.     var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  1831.     if (!file.exists()) 
  1832.       file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1833.     fos.init(file, modeFlags, PERMS_FILE, 0);
  1834.     
  1835.     try {
  1836.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1837.                             .createInstance(Components.interfaces.nsIDOMParser);
  1838.       const EMPTY_UPDATES_DOCUMENT = "<?xml version=\"1.0\"?><updates xmlns=\"http://www.mozilla.org/2005/app-update\"></updates>";
  1839.       var doc = parser.parseFromString(EMPTY_UPDATES_DOCUMENT, "text/xml");
  1840.  
  1841.       for (var i = 0; i < updates.length; ++i) {
  1842.         if (updates[i])
  1843.           doc.documentElement.appendChild(updates[i].serialize(doc));
  1844.       }
  1845.  
  1846.       var serializer = Components.classes["@mozilla.org/xmlextras/xmlserializer;1"]
  1847.                                 .createInstance(Components.interfaces.nsIDOMSerializer);
  1848.       serializer.serializeToStream(doc.documentElement, fos, null);
  1849.     }
  1850.     catch (e) {
  1851.     }
  1852.     
  1853.     closeSafeOutputStream(fos);
  1854.   },
  1855.  
  1856.   /**
  1857.    * See nsIUpdateService.idl
  1858.    */
  1859.   saveUpdates: function() {
  1860.     this._writeUpdatesToXMLFile([this._activeUpdate], 
  1861.                                 getUpdateFile([FILE_UPDATE_ACTIVE]));
  1862.     if (this._updates) {
  1863.       this._writeUpdatesToXMLFile(this._updates, 
  1864.                                   getUpdateFile([FILE_UPDATES_DB]));
  1865.     }
  1866.   },
  1867.   
  1868.   /**
  1869.    * See nsISupports.idl
  1870.    */
  1871.   QueryInterface: function(iid) {
  1872.     if (!iid.equals(Components.interfaces.nsIUpdateManager) &&
  1873.         !iid.equals(Components.interfaces.nsISupports))
  1874.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1875.     return this;
  1876.   }
  1877. };
  1878.  
  1879.  
  1880. /**
  1881.  * Checker
  1882.  * Checks for new Updates
  1883.  * @constructor
  1884.  */
  1885. function Checker() {
  1886. }
  1887. Checker.prototype = {
  1888.   /**
  1889.    * The XMLHttpRequest object that performs the connection.
  1890.    */
  1891.   _request  : null,
  1892.   
  1893.   /**
  1894.    * The nsIUpdateCheckListener callback
  1895.    */
  1896.   _callback : null,
  1897.  
  1898.   _ping_only: false,
  1899.  
  1900.   /**
  1901.    * The URL of the update service XML file to connect to that contains details
  1902.    * about available updates.
  1903.    */
  1904.   getUpdateURL: function(force) {
  1905.     this._forced = force;
  1906.  
  1907.     var defaults =
  1908.         gPref.QueryInterface(Components.interfaces.nsIPrefService).
  1909.         getDefaultBranch(null);
  1910.  
  1911.     // Use the override URL if specified.
  1912.     var url = getPref("getCharPref", PREF_APP_UPDATE_URL_OVERRIDE, null);
  1913.  
  1914.     // Otherwise, construct the update URL from component parts.
  1915.     if (!url) {
  1916.       try {
  1917.         url = defaults.getCharPref(PREF_APP_UPDATE_URL);
  1918.       } catch (e) {
  1919.       }
  1920.     }
  1921.  
  1922.     if (!url || url == "") {
  1923.       LOG("Checker", "Update URL not defined");
  1924.       return null;
  1925.     }
  1926.  
  1927.     function getFirstRunDate() {
  1928.       var now = Date.now();
  1929.       var stamp;
  1930.       if (gPref.getPrefType(PREF_FLOCK_FIRST_RUN_DATE_STRING)) {
  1931.         stamp = gPref.getCharPref(PREF_FLOCK_FIRST_RUN_DATE_STRING);
  1932.       } else if (gPref.getPrefType(PREF_FLOCK_FIRST_RUN_DATE)) {
  1933.         stamp = gPref.getIntPref(PREF_FLOCK_FIRST_RUN_DATE) * 1000;
  1934.         gPref.setCharPref(PREF_FLOCK_FIRST_RUN_DATE_STRING, stamp);
  1935.       } else {
  1936.         stamp = 0;
  1937.       }
  1938.  
  1939.       if (stamp <= FIRST_RUN_CUTOFF || stamp > now) {
  1940.         stamp = now;
  1941.         gPref.setCharPref(PREF_FLOCK_FIRST_RUN_DATE_STRING, stamp);
  1942.       }
  1943.  
  1944.       return String(stamp);
  1945.     }
  1946.  
  1947.     url = url.replace(/%PRODUCT%/g, gApp.name);
  1948.     url = url.replace(/%VERSION%/g, gApp.version);
  1949.     url = url.replace(/%BUILD_ID%/g, gApp.appBuildID);
  1950.     url = url.replace(/%BUILD_TARGET%/g, gApp.OS + "_" + gABI);
  1951.     url = url.replace(/%OS_VERSION%/g, gOSVersion);
  1952.     url = url.replace(/%LOCALE%/g, getLocale());
  1953.     url = url.replace(/%CHANNEL%/g, getUpdateChannel());
  1954.     url = url.replace(/%FIRST_RUN%/g, getFirstRunDate());
  1955.     url = url.replace(/\+/g, "%2B");
  1956.  
  1957.     if (force)
  1958.     url += "?force=1"
  1959.  
  1960.     LOG("Checker", "update url: " + url);
  1961.     return url;
  1962.   },
  1963.   
  1964.   /**
  1965.    * See nsIUpdateService.idl
  1966.    */
  1967.   checkForUpdates: function(listener, force) {
  1968.     if (!listener)
  1969.       throw Components.results.NS_ERROR_NULL_POINTER;
  1970.     
  1971.     if (!this.getUpdateURL(force) || (!this.enabled && !force))
  1972.       return;
  1973.       
  1974.     var updateURL = this.getUpdateURL(force);
  1975.  
  1976.     if (this._ping_only)
  1977.       updateURL = updateURL.replace("/update/", "/install/");
  1978.  
  1979.     this._request = 
  1980.       Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].
  1981.       createInstance(Components.interfaces.nsIXMLHttpRequest);
  1982.     this._request.open("GET", updateURL, true);
  1983.     this._request.channel.notificationCallbacks = new BadCertHandler();
  1984.     this._request.overrideMimeType("text/xml");
  1985.     this._request.setRequestHeader("Cache-Control", "no-cache");
  1986.     
  1987.     var self = this;
  1988.     this._request.onerror     = function(event) { self.onError(event);    };
  1989.     this._request.onload      = function(event) { self.onLoad(event);     };
  1990.     this._request.onprogress  = function(event) { self.onProgress(event); };
  1991.  
  1992.     LOG("Checker", "checkForUpdates: sending request to " + this.getUpdateURL(force));
  1993.     this._request.send(null);
  1994.     
  1995.     this._callback = listener;
  1996.   },
  1997.   
  1998.   /**
  1999.    * When progress associated with the XMLHttpRequest is received.
  2000.    * @param   event
  2001.    *          The nsIDOMLSProgressEvent for the load.
  2002.    */
  2003.   onProgress: function(event) {
  2004.     LOG("Checker", "onProgress: " + event.position + "/" + event.totalSize);
  2005.     this._callback.onProgress(event.target, event.position, event.totalSize);
  2006.   },
  2007.   
  2008.   /**
  2009.    * Returns an array of nsIUpdate objects discovered by the update check.
  2010.    */
  2011.   get _updates() {
  2012.     var updatesElement = this._request.responseXML.documentElement;
  2013.     if (!updatesElement) {
  2014.       LOG("Checker", "get_updates: empty updates document?!");
  2015.       return [];
  2016.     }
  2017.  
  2018.     if (updatesElement.nodeName != "updates") {
  2019.       LOG("Checker", "get_updates: unexpected node name!");
  2020.       throw "";
  2021.     }
  2022.     
  2023.     var updates = [];
  2024.     for (var i = 0; i < updatesElement.childNodes.length; ++i) {
  2025.       var updateElement = updatesElement.childNodes.item(i);
  2026.       if (updateElement.nodeType != Node.ELEMENT_NODE ||
  2027.           updateElement.localName != "update")
  2028.         continue;
  2029.  
  2030.       updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  2031.       try {
  2032.         var update = new Update(updateElement);
  2033.       } catch (e) {
  2034.         LOG("Checker", "Invalid <update/>, ignoring...");
  2035.         continue;
  2036.       }
  2037.       update.serviceURL = this.getUpdateURL(this._forced);
  2038.       update.channel = getUpdateChannel();
  2039.       updates.push(update);
  2040.     }
  2041.  
  2042.     return updates;
  2043.   },
  2044.   
  2045.   /**
  2046.    * The XMLHttpRequest succeeded and the document was loaded.
  2047.    * @param   event
  2048.    *          The nsIDOMLSEvent for the load
  2049.    */
  2050.   onLoad: function(event) {
  2051.     LOG("Checker", "onLoad: request completed downloading document");
  2052.     
  2053.     try {
  2054.       checkCert(this._request.channel);
  2055.  
  2056.       // Analyze the resulting DOM and determine the set of updates to install
  2057.       var updates = this._updates;
  2058.       
  2059.       LOG("Checker", "Updates available: " + updates.length);
  2060.       
  2061.       // ... and tell the Update Service about what we discovered.
  2062.       this._callback.onCheckComplete(event.target, updates, updates.length);
  2063.     }
  2064.     catch (e) {
  2065.       LOG("Checker", "There was a problem with the update service URL specified, " + 
  2066.           "either the XML file was malformed or it does not exist at the location " + 
  2067.           "specified. Exception: " + e);
  2068.       var update = new Update(null);
  2069.       update.statusText = getStatusTextFromCode(404, 404);
  2070.       this._callback.onError(event.target, update);
  2071.     }
  2072.  
  2073.     this._request = null;
  2074.   },
  2075.   
  2076.   /**
  2077.    * There was an error of some kind during the XMLHttpRequest
  2078.    * @param   event
  2079.    *          The nsIDOMLSEvent for the load
  2080.    */
  2081.   onError: function(event) {
  2082.     LOG("Checker", "onError: error during load");
  2083.     
  2084.     var request = event.target;
  2085.     try {
  2086.       var status = request.status;
  2087.     }
  2088.     catch (e) {
  2089.       var req = request.channel.QueryInterface(Components.interfaces.nsIRequest);
  2090.       status = req.status;
  2091.     }
  2092.     
  2093.     // If we can't find an error string specific to this status code, 
  2094.     // just use the 200 message from above, which means everything 
  2095.     // "looks" fine but there was probably an XML error or a bogus file.
  2096.     var update = new Update(null);
  2097.     update.statusText = getStatusTextFromCode(status, 200);
  2098.     this._callback.onError(request, update);
  2099.  
  2100.     this._request = null;
  2101.   },
  2102.   
  2103.   /**
  2104.    * Whether or not we are allowed to do update checking.
  2105.    */
  2106.   _enabled: true,
  2107.   
  2108.   /**
  2109.    * See nsIUpdateService.idl
  2110.    */
  2111.   get enabled() {
  2112.     var aus = 
  2113.         Components.classes["@mozilla.org/updates/update-service;1"].
  2114.         getService(Components.interfaces.nsIApplicationUpdateService);
  2115.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true) && 
  2116.                   aus.canUpdate && this._enabled;
  2117.     return enabled;
  2118.   },
  2119.   
  2120.   /**
  2121.    * See nsIUpdateService.idl
  2122.    */
  2123.   stopChecking: function(duration) {
  2124.     // Always stop the current check
  2125.     if (this._request)
  2126.       this._request.abort();
  2127.     
  2128.     const nsIUpdateChecker = Components.interfaces.nsIUpdateChecker;
  2129.     switch (duration) {
  2130.     case nsIUpdateChecker.CURRENT_SESSION:
  2131.       this._enabled = false;
  2132.       break;
  2133.     case nsIUpdateChecker.ANY_CHECKS:
  2134.       this._enabled = false;
  2135.       gPref.setBoolPref(PREF_APP_UPDATE_ENABLED, this._enabled);
  2136.       break;
  2137.     }
  2138.   },
  2139.   
  2140.   /**
  2141.    * See nsISupports.idl
  2142.    */
  2143.   QueryInterface: function(iid) {
  2144.     if (!iid.equals(Components.interfaces.nsIUpdateChecker) &&
  2145.         !iid.equals(Components.interfaces.nsISupports))
  2146.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2147.     return this;
  2148.   }
  2149. };
  2150.  
  2151. /**
  2152.  * Manages the download of updates
  2153.  * @param   background
  2154.  *          Whether or not this downloader is operating in background
  2155.  *          update mode. 
  2156.  * @constructor
  2157.  */
  2158. function Downloader(background) {
  2159.   this.background = background;
  2160. }
  2161. Downloader.prototype = {
  2162.   /**
  2163.    * The nsIUpdatePatch that we are downloading
  2164.    */
  2165.   _patch: null,
  2166.   
  2167.   /**
  2168.    * The nsIUpdate that we are downloading
  2169.    */
  2170.   _update: null,
  2171.   
  2172.   /**
  2173.    * The nsIIncrementalDownload object handling the download
  2174.    */
  2175.   _request: null,
  2176.  
  2177.   /**
  2178.    * Whether or not the update being downloaded is a complete replacement of
  2179.    * the user's existing installation or a patch representing the difference
  2180.    * between the new version and the previous version.
  2181.    */
  2182.   isCompleteUpdate: null,
  2183.  
  2184.   /**
  2185.    * Cancels the active download.
  2186.    */  
  2187.   cancel: function() {
  2188.     if (this._request && 
  2189.         this._request instanceof Components.interfaces.nsIRequest) {
  2190.       const NS_BINDING_ABORTED = 0x804b0002;
  2191.       this._request.cancel(NS_BINDING_ABORTED);
  2192.     }
  2193.   },
  2194.  
  2195.   /**
  2196.    * Whether or not a patch has been downloaded and staged for installation.
  2197.    */
  2198.   get patchIsStaged() {
  2199.     return readStatusFile(getUpdatesDir()) == STATE_PENDING;
  2200.   },
  2201.  
  2202.   /**
  2203.    * Verify the downloaded file.  We assume that the download is complete at
  2204.    * this point.
  2205.    */
  2206.   _verifyDownload: function() {
  2207.     if (!this._request)
  2208.       return false;
  2209.  
  2210.     var destination = this._request.destination;
  2211.  
  2212.     // Ensure that the file size matches the expected file size.
  2213.     if (destination.fileSize != this._patch.size)
  2214.       return false;
  2215.  
  2216.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"].
  2217.         createInstance(nsIFileInputStream);
  2218.     fileStream.init(destination, MODE_RDONLY, PERMS_FILE, 0);
  2219.  
  2220.     try {
  2221.       var hash = Components.classes["@mozilla.org/security/hash;1"].
  2222.           createInstance(nsICryptoHash);
  2223.       var hashFunction = nsICryptoHash[this._patch.hashFunction.toUpperCase()];
  2224.       if (hashFunction == undefined)
  2225.         throw Components.results.NS_ERROR_UNEXPECTED;
  2226.       hash.init(hashFunction);
  2227.       hash.updateFromStream(fileStream, -1);
  2228.       // NOTE: For now, we assume that the format of _patch.hashValue is hex
  2229.       // encoded binary (such as what is typically output by programs like
  2230.       // sha1sum).  In the future, this may change to base64 depending on how
  2231.       // we choose to compute these hashes.
  2232.       digest = binaryToHex(hash.finish(false));
  2233.     } catch (e) {
  2234.       LOG("Downloader", "failed to compute hash of downloaded update archive");
  2235.       digest = "";
  2236.     }
  2237.  
  2238.     fileStream.close();
  2239.  
  2240.     return digest == this._patch.hashValue.toLowerCase();
  2241.   },
  2242.  
  2243.   /**
  2244.    * Select the patch to use given the current state of updateDir and the given
  2245.    * set of update patches.
  2246.    * @param   update
  2247.    *          A nsIUpdate object to select a patch from
  2248.    * @param   updateDir
  2249.    *          A nsIFile representing the update directory
  2250.    * @returns A nsIUpdatePatch object to download
  2251.    */
  2252.   _selectPatch: function(update, updateDir) {
  2253.     // Given an update to download, we will always try to download the patch
  2254.     // for a partial update over the patch for a full update.
  2255.  
  2256.     /**
  2257.      * Return the first UpdatePatch with the given type.
  2258.      * @param   type
  2259.      *          The type of the patch ("complete" or "partial")
  2260.      * @returns A nsIUpdatePatch object matching the type specified
  2261.      */
  2262.     function getPatchOfType(type) {
  2263.       for (var i = 0; i < update.patchCount; ++i) {
  2264.         var patch = update.getPatchAt(i);
  2265.         if (patch && patch.type == type)
  2266.           return patch;
  2267.       }
  2268.       return null;
  2269.     }
  2270.  
  2271.     // Look to see if any of the patches in the Update object has been
  2272.     // pre-selected for download, otherwise we must figure out which one
  2273.     // to select ourselves. 
  2274.     var selectedPatch = update.selectedPatch;
  2275.     
  2276.     var state = readStatusFile(updateDir)
  2277.  
  2278.     // If this is a patch that we know about, then select it.  If it is a patch
  2279.     // that we do not know about, then remove it and use our default logic.
  2280.     var useComplete = false;
  2281.     if (selectedPatch) {
  2282.       LOG("Downloader", "found existing patch [state="+state+"]");
  2283.       switch (state) {
  2284.       case STATE_DOWNLOADING: 
  2285.         LOG("Downloader", "resuming download");
  2286.         return selectedPatch;
  2287.       case STATE_PENDING:
  2288.         LOG("Downloader", "already downloaded and staged");
  2289.         return null;
  2290.       default:
  2291.         // Something went wrong when we tried to apply the previous patch.
  2292.         // Try the complete patch next time.
  2293.         if (update && selectedPatch.type == "partial") {
  2294.           useComplete = true;
  2295.         } else {
  2296.           // This is a pretty fatal error.  Just bail.
  2297.           LOG("Downloader", "failed to apply complete patch!");
  2298.           writeStatusFile(updateDir, STATE_NONE);
  2299.           return null;
  2300.         }
  2301.       }
  2302.  
  2303.       selectedPatch = null;
  2304.     }
  2305.     
  2306.     // If we were not able to discover an update from a previous download, we 
  2307.     // select the best patch from the given set.
  2308.     var partialPatch = getPatchOfType("partial");
  2309.     if (!useComplete)
  2310.       selectedPatch = partialPatch;
  2311.     if (!selectedPatch) {
  2312.       if (partialPatch)
  2313.         partialPatch.selected = false;
  2314.       selectedPatch = getPatchOfType("complete");
  2315.     }
  2316.  
  2317.     // Restore the updateDir since we may have deleted it.
  2318.     updateDir = getUpdatesDir();
  2319.  
  2320.     // if update only contains a partial patch, selectedPatch == null here if
  2321.     // the partial patch has been attempted and fails and we're trying to get a
  2322.     // complete patch
  2323.     if (selectedPatch)    
  2324.       selectedPatch.selected = true;
  2325.  
  2326.     update.isCompleteUpdate = useComplete;
  2327.     
  2328.     // Reset the Active Update object on the Update Manager and flush the
  2329.     // Active Update DB. 
  2330.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2331.                        .getService(Components.interfaces.nsIUpdateManager);
  2332.     um.activeUpdate = update;
  2333.  
  2334.     return selectedPatch;
  2335.   },
  2336.  
  2337.   /**
  2338.    * Whether or not we are currently downloading something.
  2339.    */
  2340.   get isBusy() {
  2341.     return this._request != null;
  2342.   },
  2343.   
  2344.   /**
  2345.    * Download and stage the given update.
  2346.    * @param   update
  2347.    *          A nsIUpdate object to download a patch for. Cannot be null.
  2348.    */
  2349.   downloadUpdate: function(update) {
  2350.     if (!update)
  2351.       throw Components.results.NS_ERROR_NULL_POINTER;
  2352.     
  2353.     var updateDir = getUpdatesDir();
  2354.  
  2355.     this._update = update;
  2356.  
  2357.     // This function may return null, which indicates that there are no patches
  2358.     // to download.
  2359.     this._patch = this._selectPatch(update, updateDir);
  2360.     if (!this._patch) {
  2361.       LOG("Downloader", "no patch to download");
  2362.       return readStatusFile(updateDir);
  2363.     }
  2364.     this.isCompleteUpdate = this._patch.type == "complete";
  2365.  
  2366.     var patchFile = updateDir.clone();
  2367.     patchFile.append(FILE_UPDATE_ARCHIVE);
  2368.  
  2369.     var ios = Components.classes["@mozilla.org/network/io-service;1"].
  2370.         getService(Components.interfaces.nsIIOService);
  2371.     var uri = ios.newURI(this._patch.URL, null, null);
  2372.  
  2373.     this._request =
  2374.         Components.classes["@mozilla.org/network/incremental-download;1"].
  2375.         createInstance(nsIIncrementalDownload);
  2376.  
  2377.     LOG("Downloader", "downloadUpdate: Downloading from " + uri.spec + " to " + 
  2378.         patchFile.path);
  2379.  
  2380.     var interval = this.background ? DOWNLOAD_BACKGROUND_INTERVAL
  2381.                                    : DOWNLOAD_FOREGROUND_INTERVAL;
  2382.     this._request.init(uri, patchFile, DOWNLOAD_CHUNK_SIZE, interval);
  2383.     this._request.start(this, null);
  2384.  
  2385.     writeStatusFile(updateDir, STATE_DOWNLOADING);
  2386.     this._patch.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2387.     this._patch.state = STATE_DOWNLOADING;
  2388.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2389.                        .getService(Components.interfaces.nsIUpdateManager);
  2390.     um.saveUpdates();
  2391.     return STATE_DOWNLOADING;
  2392.   },
  2393.   
  2394.   /**
  2395.    * An array of download listeners to notify when we receive 
  2396.    * nsIRequestObserver or nsIProgressEventSink method calls.
  2397.    */
  2398.   _listeners: [],
  2399.  
  2400.   /** 
  2401.    * Adds a listener to the download process
  2402.    * @param   listener
  2403.    *          A download listener, implementing nsIRequestObserver and
  2404.    *          nsIProgressEventSink
  2405.    */
  2406.   addDownloadListener: function(listener) {
  2407.     for (var i = 0; i < this._listeners.length; ++i) {
  2408.       if (this._listeners[i] == listener)
  2409.         return;
  2410.     }
  2411.     this._listeners.push(listener);
  2412.   },
  2413.   
  2414.   /** 
  2415.    * Removes a download listener
  2416.    * @param   listener
  2417.    *          The listener to remove.
  2418.    */
  2419.   removeDownloadListener: function(listener) {
  2420.     for (var i = 0; i < this._listeners.length; ++i) {
  2421.       if (this._listeners[i] == listener) {
  2422.         this._listeners.splice(i, 1);
  2423.         return;
  2424.       }
  2425.     }
  2426.   },
  2427.   
  2428.   /**
  2429.    * When the async request begins
  2430.    * @param   request
  2431.    *          The nsIRequest object for the transfer
  2432.    * @param   context
  2433.    *          Additional data
  2434.    */
  2435.   onStartRequest: function(request, context) {
  2436.     request.QueryInterface(nsIIncrementalDownload);
  2437.     LOG("Downloader", "onStartRequest: " + request.URI.spec);
  2438.     
  2439.     var listenerCount = this._listeners.length;
  2440.     for (var i = 0; i < listenerCount; ++i)
  2441.       this._listeners[i].onStartRequest(request, context);
  2442.   },
  2443.   
  2444.   /** 
  2445.    * When new data has been downloaded
  2446.    * @param   request
  2447.    *          The nsIRequest object for the transfer
  2448.    * @param   context
  2449.    *          Additional data
  2450.    * @param   progress
  2451.    *          The current number of bytes transferred
  2452.    * @param   maxProgress
  2453.    *          The total number of bytes that must be transferred
  2454.    */
  2455.   onProgress: function(request, context, progress, maxProgress) {
  2456.     request.QueryInterface(nsIIncrementalDownload);
  2457.     LOG("Downloader.onProgress", "onProgress: " + request.URI.spec + ", " + progress + "/" + maxProgress);
  2458.     
  2459.     var listenerCount = this._listeners.length;
  2460.     for (var i = 0; i < listenerCount; ++i) {
  2461.       var listener = this._listeners[i];
  2462.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2463.         listener.onProgress(request, context, progress, maxProgress);
  2464.     }
  2465.   },
  2466.   
  2467.   /** 
  2468.    * When we have new status text
  2469.    * @param   request
  2470.    *          The nsIRequest object for the transfer
  2471.    * @param   context
  2472.    *          Additional data
  2473.    * @param   status
  2474.    *          A status code
  2475.    * @param   statusText
  2476.    *          Human readable version of |status|
  2477.    */
  2478.   onStatus: function(request, context, status, statusText) {
  2479.     request.QueryInterface(nsIIncrementalDownload);
  2480.     LOG("Downloader", "onStatus: " + request.URI.spec + " status = " + status + ", text = " + statusText);
  2481.     var listenerCount = this._listeners.length;
  2482.     for (var i = 0; i < listenerCount; ++i) {
  2483.       var listener = this._listeners[i];
  2484.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2485.         listener.onStatus(request, context, status, statusText);
  2486.     }
  2487.   },
  2488.   
  2489.   /** 
  2490.    * When data transfer ceases
  2491.    * @param   request
  2492.    *          The nsIRequest object for the transfer
  2493.    * @param   context
  2494.    *          Additional data
  2495.    * @param   status
  2496.    *          Status code containing the reason for the cessation.
  2497.    */
  2498.   onStopRequest: function(request, context, status) {
  2499.     request.QueryInterface(nsIIncrementalDownload);
  2500.     LOG("Downloader", "onStopRequest: " + request.URI.spec + ", status = " + status);
  2501.  
  2502.     var state = this._patch.state;
  2503.     var shouldShowPrompt = false;
  2504.     var deleteActiveUpdate = false;
  2505.     const NS_BINDING_ABORTED = 0x804b0002;
  2506.     const NS_ERROR_ABORT = 0x80004004;
  2507.     if (Components.isSuccessCode(status)) {
  2508.       var sbs = 
  2509.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  2510.           getService(Components.interfaces.nsIStringBundleService);
  2511.       var updateStrings = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2512.       if (this._verifyDownload()) {
  2513.         state = STATE_PENDING;
  2514.         
  2515.         // We only need to explicitly show the prompt if this is a backround
  2516.         // download, since otherwise some kind of UI is already visible and 
  2517.         // that UI will notify. 
  2518.         if (this.background)
  2519.           shouldShowPrompt = true;
  2520.         
  2521.         // Tell the updater.exe we're ready to apply.
  2522.         writeStatusFile(getUpdatesDir(), state);
  2523.         this._update.installDate = (new Date()).getTime();
  2524.         this._update.statusText = updateStrings.
  2525.           GetStringFromName("installPending");
  2526.       } else {
  2527.         LOG("Downloader", "onStopRequest: download verification failed");
  2528.         state = STATE_DOWNLOAD_FAILED;
  2529.         
  2530.         var brandStrings = sbs.createBundle(URI_BRAND_PROPERTIES);
  2531.         var brandShortName = brandStrings.GetStringFromName("brandShortName");
  2532.         this._update.statusText = updateStrings.
  2533.           formatStringFromName("verificationError", [brandShortName], 1);
  2534.         
  2535.         // TODO: use more informative error code here
  2536.         status = Components.results.NS_ERROR_UNEXPECTED;
  2537.         
  2538.         var message = getStatusTextFromCode("verification_failed", 
  2539.           "verification_failed");
  2540.         this._update.statusText = message;
  2541.         
  2542.         if (this._update.isCompleteUpdate)
  2543.           deleteActiveUpdate = true;
  2544.  
  2545.         // Destroy the updates directory, since we're done with it.
  2546.         cleanUpUpdatesDir();
  2547.       }
  2548.     }
  2549.     else if (status != NS_BINDING_ABORTED &&
  2550.              status != NS_ERROR_ABORT) {
  2551.       LOG("Downloader", "onStopRequest: Non-verification failure");
  2552.       // Some sort of other failure, log this in the |statusText| property
  2553.       state = STATE_DOWNLOAD_FAILED;
  2554.       
  2555.       // XXXben - if |request| (The Incremental Download) provided a means
  2556.       // for accessing the http channel we could do more here.
  2557.       
  2558.       const NS_BINDING_FAILED = 2152398849;
  2559.       this._update.statusText = getStatusTextFromCode(status, 
  2560.         NS_BINDING_FAILED);
  2561.       
  2562.       // Destroy the updates directory, since we're done with it.
  2563.       cleanUpUpdatesDir();
  2564.       
  2565.       deleteActiveUpdate = true;
  2566.     }
  2567.     LOG("Downloader", "Setting state to: " + state);
  2568.     this._patch.state = state;
  2569.     var um = 
  2570.         Components.classes["@mozilla.org/updates/update-manager;1"].
  2571.         getService(Components.interfaces.nsIUpdateManager);
  2572.     if (deleteActiveUpdate) {
  2573.       this._update.installDate = (new Date()).getTime();
  2574.       um.activeUpdate = null;
  2575.     }
  2576.     um.saveUpdates();
  2577.     
  2578.     var listenerCount = this._listeners.length;
  2579.     for (var i = 0; i < listenerCount; ++i)
  2580.       this._listeners[i].onStopRequest(request, context, status);
  2581.  
  2582.     this._request = null;
  2583.     
  2584.     if (state == STATE_DOWNLOAD_FAILED) {
  2585.       if (!this._update.isCompleteUpdate) {
  2586.         var allFailed = true;
  2587.   
  2588.         // If we were downloading a patch and the patch verification phase 
  2589.         // failed, log this and then commence downloading the complete update.
  2590.         LOG("Downloader", "onStopRequest: Verification of patch failed, downloading complete update");
  2591.         this._update.isCompleteUpdate = true;
  2592.         var status = this.downloadUpdate(this._update);
  2593.  
  2594.         if (status == STATE_NONE) {
  2595.           cleanupActiveUpdate();
  2596.         } else {
  2597.           allFailed = false;
  2598.         }
  2599.         // This will reset the |.state| property on this._update if a new 
  2600.         // download initiates.
  2601.       }
  2602.     
  2603.       // if we still fail after trying a complete download, give up completely
  2604.       if (allFailed) {
  2605.         // In all other failure cases, i.e. we're S.O.L. - no more failing over
  2606.         // ...
  2607.         
  2608.         // If this was ever a foreground download, and now there is no UI active
  2609.         // (e.g. because the user closed the download window) and there was an
  2610.         // error, we must notify now. Otherwise we can keep the failure to 
  2611.         // ourselves since the user won't be expecting it. 
  2612.         try {
  2613.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2614.           var fgdl = this._update.getProperty("foregroundDownload");
  2615.         }
  2616.         catch (e) {
  2617.         }
  2618.       
  2619.         if (fgdl == "true") {
  2620.           var prompter = 
  2621.               Components.classes["@mozilla.org/updates/update-prompt;1"].
  2622.               createInstance(Components.interfaces.nsIUpdatePrompt);
  2623.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2624.           this._update.setProperty("downloadFailed", "true");
  2625.           prompter.showUpdateError(this._update);
  2626.         }
  2627.       }
  2628.  
  2629.       // the complete download succeeded or total failure was handled, so exit
  2630.       return;
  2631.     }
  2632.  
  2633.     // Do this after *everything* else, since it will likely cause the app 
  2634.     // to shut down. 
  2635.     if (shouldShowPrompt) {
  2636.       // Notify the user that an update has been downloaded and is ready for 
  2637.       // installation (i.e. that they should restart the application). We do
  2638.       // not notify on failed update attempts.
  2639.       var prompter = 
  2640.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  2641.           createInstance(Components.interfaces.nsIUpdatePrompt);
  2642.       prompter.showUpdateDownloaded(this._update);
  2643.     }
  2644.   },
  2645.  
  2646.   /**
  2647.    * See nsIInterfaceRequestor.idl
  2648.    */
  2649.   getInterface: function(iid) {
  2650.     // The network request may require proxy authentication, so provide the
  2651.     // default nsIAuthPrompt if requested.
  2652.     if (iid.equals(Components.interfaces.nsIAuthPrompt)) {
  2653.       var prompt =
  2654.           Components.classes["@mozilla.org/network/default-auth-prompt;1"].
  2655.           createInstance();
  2656.       return prompt.QueryInterface(iid);
  2657.     }
  2658.     Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  2659.     return null;
  2660.   },
  2661.    
  2662.   /**
  2663.    * See nsISupports.idl
  2664.    */
  2665.   QueryInterface: function(iid) {
  2666.     if (!iid.equals(Components.interfaces.nsIRequestObserver) &&
  2667.         !iid.equals(Components.interfaces.nsIProgressEventSink) &&
  2668.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  2669.         !iid.equals(Components.interfaces.nsISupports))
  2670.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2671.     return this;
  2672.   }
  2673. };
  2674.  
  2675. /**
  2676.  * A manager for update check timers. Manages timers that fire over long 
  2677.  * periods of time (e.g. days, weeks).
  2678.  * @constructor
  2679.  */
  2680. function TimerManager() {
  2681.   getObserverService().addObserver(this, "xpcom-shutdown", false);
  2682.  
  2683.   const nsITimer = Components.interfaces.nsITimer;
  2684.   this._timer = Components.classes["@mozilla.org/timer;1"]
  2685.                           .createInstance(nsITimer);
  2686.   var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2687.   this._timer.initWithCallback(this, timerInterval, 
  2688.                                nsITimer.TYPE_REPEATING_SLACK);
  2689. }
  2690. TimerManager.prototype = {
  2691.   /**
  2692.    * See nsIObserver.idl
  2693.    */
  2694.   observe: function(subject, topic, data) {
  2695.     if (topic == "xpcom-shutdown") {
  2696.      getObserverService().removeObserver(this, "xpcom-shutdown");
  2697.  
  2698.       // Release everything we hold onto. 
  2699.       for (var timerID in this._timers)
  2700.         delete this._timers[timerID];
  2701.       this._timer = null;
  2702.       this._timers = null;
  2703.     }
  2704.   },
  2705.  
  2706.   /**
  2707.    * The Checker Timer
  2708.    */
  2709.   _timer: null,
  2710.   
  2711.   /**
  2712.    * The set of registered timers.
  2713.    */
  2714.   _timers: { },
  2715.   
  2716.   /**
  2717.    * Called when the checking timer fires.
  2718.    * @param   timer
  2719.    *          The checking timer that fired. 
  2720.    */
  2721.   notify: function(timer) {
  2722.     for (var timerID in this._timers) {
  2723.       var timerData = this._timers[timerID];
  2724.       var lastUpdateTime = timerData.lastUpdateTime;
  2725.       var now = Math.round(Date.now() / 1000);
  2726.     
  2727.       // Fudge the lastUpdateTime by some random increment of the update 
  2728.       // check interval (e.g. some random slice of 10 minutes) so that when
  2729.       // the time comes to check, we offset each client request by a random
  2730.       // amount so they don't all hit at once. app.update.timer is in milliseconds,
  2731.       // whereas app.update.lastUpdateTime is in seconds
  2732.       var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2733.       lastUpdateTime += Math.round(Math.random() * timerInterval / 1000);
  2734.  
  2735.       if ((now - lastUpdateTime) > timerData.interval &&
  2736.           timerData.callback instanceof Components.interfaces.nsITimerCallback) {
  2737.         timerData.callback.notify(timer);
  2738.         timerData.lastUpdateTime = now;
  2739.         var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, timerID);
  2740.         gPref.setIntPref(preference, now);
  2741.       }
  2742.     }
  2743.   },
  2744.   
  2745.   /**
  2746.    * See nsIUpdateService.idl
  2747.    */
  2748.   registerTimer: function(id, callback, interval) {
  2749.     var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, id);
  2750.     var now = Math.round(Date.now() / 1000);
  2751.     var lastUpdateTime = null;
  2752.     if (gPref.prefHasUserValue(preference)) {
  2753.       lastUpdateTime = gPref.getIntPref(preference);
  2754.     } else {
  2755.       gPref.setIntPref(preference, now);
  2756.       lastUpdateTime = now;
  2757.     }
  2758.     this._timers[id] = { callback       : callback, 
  2759.                          interval       : interval,
  2760.                          lastUpdateTime : lastUpdateTime }; 
  2761.   },
  2762.  
  2763.   /**
  2764.    * See nsISupports.idl
  2765.    */
  2766.   QueryInterface: function(iid) {
  2767.     if (!iid.equals(Components.interfaces.nsIUpdateTimerManager) &&
  2768.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  2769.         !iid.equals(Components.interfaces.nsIObserver) &&
  2770.         !iid.equals(Components.interfaces.nsISupports))
  2771.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2772.     return this;
  2773.   }
  2774. };
  2775.  
  2776. //@line 2749 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2777. /**
  2778.  * UpdatePrompt
  2779.  * An object which can prompt the user with information about updates, request
  2780.  * action, etc. Embedding clients can override this component with one that 
  2781.  * invokes a native front end. 
  2782.  * @constructor
  2783.  */
  2784. function UpdatePrompt() {
  2785. }
  2786. UpdatePrompt.prototype = {
  2787.   /**
  2788.    * See nsIUpdateService.idl
  2789.    */
  2790.   checkForUpdates: function() {
  2791.     this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2792.                  null, null);
  2793.   },
  2794.     
  2795.   /**
  2796.    * See nsIUpdateService.idl
  2797.    */
  2798.   showUpdateAvailable: function(update) {
  2799.     if (this._enabled) {
  2800.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2801.                    "updatesavailable", update);
  2802.     }
  2803.   },
  2804.   
  2805.   /**
  2806.    * See nsIUpdateService.idl
  2807.    */
  2808.   showUpdateDownloaded: function(update) {
  2809.     if (this._enabled) {
  2810.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2811.                    "finishedBackground", update);
  2812.     }
  2813.   },
  2814.   
  2815.   /**
  2816.    * See nsIUpdateService.idl
  2817.    */
  2818.   showUpdateInstalled: function(update) {
  2819.     var showUpdateInstalledUI = getPref("getBoolPref", 
  2820.       PREF_APP_UPDATE_SHOW_INSTALLED_UI, true);
  2821.     if (this._enabled && showUpdateInstalledUI) {
  2822.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2823.                    "installed", update);
  2824.     }
  2825.   },
  2826.   
  2827.   /**
  2828.    * See nsIUpdateService.idl
  2829.    */
  2830.   showUpdateError: function(update) {
  2831.     if (this._enabled) {
  2832.       // In some cases, we want to just show a simple alert dialog:
  2833.       if (update.state == STATE_FAILED && update.errorCode == WRITE_ERROR) {
  2834.         var sbs = 
  2835.             Components.classes["@mozilla.org/intl/stringbundle;1"].
  2836.             getService(Components.interfaces.nsIStringBundleService);
  2837.         var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2838.         var title = updateBundle.GetStringFromName("updaterIOErrorTitle");
  2839.         var text = updateBundle.formatStringFromName("updaterIOErrorText",
  2840.                                                      [gApp.name], 1);
  2841.         var ww =
  2842.             Components.classes["@mozilla.org/embedcomp/window-watcher;1"].
  2843.             getService(Components.interfaces.nsIWindowWatcher);
  2844.         ww.getNewPrompter(null).alert(title, text);
  2845.       } else {
  2846.         this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2847.                      "errors", update);
  2848.       }
  2849.     }
  2850.   },
  2851.   
  2852.   /**
  2853.    * See nsIUpdateService.idl
  2854.    */
  2855.   showUpdateHistory: function(parent) {
  2856.     this._showUI(parent, URI_UPDATE_HISTORY_DIALOG, "modal,dialog=yes", "Update:History", 
  2857.                  null, null);
  2858.   },
  2859.   
  2860.   /**
  2861.    * Whether or not we are enabled (i.e. not in Silent mode)
  2862.    */
  2863.   get _enabled() {
  2864.     return !getPref("getBoolPref", PREF_APP_UPDATE_SILENT, false);
  2865.   },
  2866.   
  2867.   /**
  2868.    * Show the Update Checking UI
  2869.    * @param   parent
  2870.    *          A parent window, can be null
  2871.    * @param   uri
  2872.    *          The URI string of the dialog to show
  2873.    * @param   name
  2874.    *          The Window Name of the dialog to show, in case it is already open
  2875.    *          and can merely be focused
  2876.    * @param   page
  2877.    *          The page of the wizard to be displayed, if one is already open.
  2878.    * @param   update
  2879.    *          An update to pass to the UI in the window arguments. 
  2880.    *          Can be null
  2881.    */
  2882.   _showUI: function(parent, uri, features, name, page, update) {
  2883.     var ary = null;
  2884.     if (update) {
  2885.       ary = Components.classes["@mozilla.org/supports-array;1"]
  2886.                       .createInstance(Components.interfaces.nsISupportsArray);
  2887.       ary.AppendElement(update);
  2888.     }
  2889.       
  2890.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  2891.                        .getService(Components.interfaces.nsIWindowMediator);
  2892.     var win = wm.getMostRecentWindow(name);
  2893.     if (win) {
  2894.       if (page && "setCurrentPage" in win)
  2895.         win.setCurrentPage(page);
  2896.       win.focus();
  2897.     }
  2898.     else {
  2899.       var openFeatures = "chrome,centerscreen,dialog=no,resizable=no,titlebar,toolbar=no";
  2900.       if (features)
  2901.         openFeatures += "," + features;
  2902.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  2903.                          .getService(Components.interfaces.nsIWindowWatcher);
  2904.       ww.openWindow(parent, uri, "", openFeatures, ary);
  2905.     }
  2906.   },
  2907.   
  2908.   /**
  2909.    * See nsISupports.idl
  2910.    */
  2911.   QueryInterface: function(iid) {
  2912.     if (!iid.equals(Components.interfaces.nsIUpdatePrompt) &&
  2913.         !iid.equals(Components.interfaces.nsISupports))
  2914.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2915.     return this;
  2916.   }
  2917. };
  2918. //@line 2891 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2919.  
  2920. var gModule = {
  2921.   registerSelf: function(componentManager, fileSpec, location, type) {
  2922.     componentManager = componentManager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  2923.     
  2924.     for (var key in this._objects) {
  2925.       var obj = this._objects[key];
  2926.       componentManager.registerFactoryLocation(obj.CID, obj.className, obj.contractID,
  2927.                                                fileSpec, location, type);
  2928.     }
  2929.  
  2930.     // Make the Update Service a startup observer
  2931.     var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  2932.                                     .getService(Components.interfaces.nsICategoryManager);
  2933.     categoryManager.addCategoryEntry("app-startup", this._objects.service.className,
  2934.                                      "service," + this._objects.service.contractID, 
  2935.                                      true, true);
  2936.   },
  2937.   
  2938.   getClassObject: function(componentManager, cid, iid) {
  2939.     if (!iid.equals(Components.interfaces.nsIFactory))
  2940.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  2941.  
  2942.     for (var key in this._objects) {
  2943.       if (cid.equals(this._objects[key].CID))
  2944.         return this._objects[key].factory;
  2945.     }
  2946.     
  2947.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2948.   },
  2949.   
  2950.   _objects: {
  2951.     service: { CID        : Components.ID("{B3C290A6-3943-4B89-8BBE-C01EB7B3B311}"),
  2952.                contractID : "@mozilla.org/updates/update-service;1",
  2953.                className  : "Update Service",
  2954.                factory    : makeFactory(UpdateService)
  2955.              },
  2956.     checker: { CID        : Components.ID("{898CDC9B-E43F-422F-9CC4-2F6291B415A3}"),
  2957.                contractID : "@mozilla.org/updates/update-checker;1",
  2958.                className  : "Update Checker",
  2959.                factory    : makeFactory(Checker)
  2960.              },
  2961. //@line 2934 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2962.     prompt:  { CID        : Components.ID("{27ABA825-35B5-4018-9FDD-F99250A0E722}"),
  2963.                contractID : "@mozilla.org/updates/update-prompt;1",
  2964.                className  : "Update Prompt",
  2965.                factory    : makeFactory(UpdatePrompt)
  2966.              },
  2967. //@line 2940 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2968.     timers:  { CID        : Components.ID("{B322A5C0-A419-484E-96BA-D7182163899F}"),
  2969.                contractID : "@mozilla.org/updates/timer-manager;1",
  2970.                className  : "Timer Manager",
  2971.                factory    : makeFactory(TimerManager)
  2972.              },
  2973.     manager: { CID        : Components.ID("{093C2356-4843-4C65-8709-D7DBCBBE7DFB}"),
  2974.                contractID : "@mozilla.org/updates/update-manager;1",
  2975.                className  : "Update Manager",
  2976.                factory    : makeFactory(UpdateManager)
  2977.              },
  2978.   },
  2979.   
  2980.   canUnload: function(componentManager) {
  2981.     return true;
  2982.   }
  2983. };
  2984.  
  2985. /**
  2986.  * Creates a factory for instances of an object created using the passed-in
  2987.  * constructor.
  2988.  */
  2989. function makeFactory(ctor) {
  2990.   function ci(outer, iid) {
  2991.     if (outer != null)
  2992.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  2993.     return (new ctor()).QueryInterface(iid);
  2994.   } 
  2995.   return { createInstance: ci };
  2996. }
  2997.   
  2998. function NSGetModule(compMgr, fileSpec) {
  2999.   return gModule;
  3000. }
  3001.  
  3002. /**
  3003.  * Determines whether or there are installed addons which are incompatible 
  3004.  * with this update.
  3005.  * @param   update
  3006.  *          The update to check compatibility against
  3007.  * @returns true if there are no addons installed that are incompatible with
  3008.  *          the specified update, false otherwise.
  3009.  */
  3010. function isCompatible(update) {
  3011. //@line 2984 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3012.   var em = 
  3013.       Components.classes["@mozilla.org/extensions/manager;1"].
  3014.       getService(Components.interfaces.nsIExtensionManager);
  3015.   var items = em.getIncompatibleItemList("", update.extensionVersion,
  3016.     nsIUpdateItem.TYPE_ADDON, false, { });
  3017.   return items.length == 0;
  3018. //@line 2993 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3019. }
  3020.  
  3021. /**
  3022.  * Shows a prompt for an update, provided there are no incompatible addons.
  3023.  * If there are, kick off an update check and see if updates are available
  3024.  * that will resolve the incompatibilities.
  3025.  * @param   update
  3026.  *          The available update to show
  3027.  */
  3028. function showPromptIfNoIncompatibilities(update) {
  3029.   function showPrompt(update) {
  3030.     LOG("UpdateService", "_selectAndInstallUpdate: need to prompt user before continuing...");
  3031.     var prompter = 
  3032.         Components.classes["@mozilla.org/updates/update-prompt;1"].
  3033.         createInstance(Components.interfaces.nsIUpdatePrompt);
  3034.     prompter.showUpdateAvailable(update);
  3035.   }
  3036.  
  3037. //@line 3012 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3038.   /**
  3039.    * Determines if an addon is compatible with a particular update.
  3040.    * @param   addon
  3041.    *          The addon to check
  3042.    * @param   version
  3043.    *          The extensionVersion of the update to check for compatibility 
  3044.    *          against.
  3045.    * @returns true if the addon is compatible, false otherwise
  3046.    */
  3047.   function addonIsCompatible(addon, version) {
  3048.     var vc = 
  3049.         Components.classes["@mozilla.org/xpcom/version-comparator;1"].
  3050.         getService(Components.interfaces.nsIVersionComparator);
  3051.     return (vc.compare(version, addon.minAppVersion) >= 0) &&
  3052.           (vc.compare(version, addon.maxAppVersion) <= 0);
  3053.   }
  3054.  
  3055.   /**
  3056.    * An object implementing nsIAddonUpdateCheckListener that looks for 
  3057.    * available updates to addons and if updates are found that will make the 
  3058.    * user's installed addon set compatible with the update, suppresses the
  3059.    * prompt that would otherwise be shown.
  3060.    * @param   addons
  3061.    *          An array of incompatible addons that are installed.
  3062.    * @constructor
  3063.    */
  3064.   function Listener(addons) {
  3065.     this._addons = addons;
  3066.   }
  3067.   Listener.prototype = {
  3068.     _addons: null,
  3069.     
  3070.     /**
  3071.      * See nsIUpdateService.idl
  3072.      */
  3073.     onUpdateStarted: function() { 
  3074.     },
  3075.     onUpdateEnded: function() {
  3076.       // There are still incompatibilities, even after an extension update 
  3077.       // check to see if there were newer, compatible versions available, so
  3078.       // we have to prompt. 
  3079.       // 
  3080.       // PREF_APP_UPDATE_INCOMPATIBLE_MODE controls the mode in which we 
  3081.       // handle incompatibilities:
  3082.       // 0    We count both VersionInfo updates _and_ NewerVersion updates
  3083.       //      against the list of incompatible addons installed - i.e. if
  3084.       //      Foo 1.2 is installed and it is incompatible with the update, and
  3085.       //      we find Foo 2.0 which is but which is not yet downloaded or 
  3086.       //      installed, then we do NOT prompt because the user can download
  3087.       //      Foo 2.0 when they restart after the update during the mismatch
  3088.       //      checking UI. This is the default, since it suppresses most 
  3089.       //      prompt dialogs. 
  3090.       // 1    We count only VersionInfo updates against the list of 
  3091.       //      incompatible addons installed - i.e. if the situation above
  3092.       //      with Foo 1.2 and available update to 2.0 applies, we DO show
  3093.       //      the prompt since a download operation will be required after
  3094.       //      the update. This is not the default and is supplied only as
  3095.       //      a hidden option for those that want it. 
  3096.       var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE, 
  3097.                          INCOMPATIBLE_MODE_NEWVERSIONS);
  3098.       if ((mode == 0 && this._addons.length) || !isCompatible(update))
  3099.         showPrompt(update);
  3100.     },
  3101.     onAddonUpdateStarted: function(addon) {
  3102.     },
  3103.     onAddonUpdateEnded: function(addon, status) {
  3104.       if (status == Components.interfaces.nsIAddonUpdateCheckListener.STATUS_UPDATE &&
  3105.           addonIsCompatible(addon, update.extensionVersion)) {
  3106.         for (var i = 0; i < this._addons.length; ++i) {
  3107.           if (this._addons[i] == addon) {
  3108.             this._addons.splice(i, 1);
  3109.             break;
  3110.           }
  3111.         }
  3112.       }
  3113.     },
  3114.     /**
  3115.      * See nsISupports.idl
  3116.      */
  3117.     QueryInterface: function(iid) {
  3118.       if (!iid.equals(Components.interfaces.nsIAddonUpdateCheckListener) &&
  3119.           !iid.equals(Components.interfaces.nsISupports))
  3120.         throw Components.results.NS_ERROR_NO_INTERFACE;
  3121.       return this;
  3122.     }
  3123.   };
  3124.   
  3125.   if (!isCompatible(update)) {
  3126.     var em = 
  3127.         Components.classes["@mozilla.org/extensions/manager;1"].
  3128.         getService(Components.interfaces.nsIExtensionManager);
  3129.     var listener = new Listener(em.getIncompatibleItemList("", 
  3130.       update.extensionVersion, nsIUpdateItem.TYPE_ADDON, false, { }));
  3131.     // See documentation on |mode| above. 
  3132.     var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE, 
  3133.                        INCOMPATIBLE_MODE_NEWVERSIONS);
  3134.     em.update([], 0, mode != 0, listener);
  3135.   }
  3136.   else
  3137. //@line 3112 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3138.     showPrompt(update);
  3139. }
  3140.